/* ===============================
   RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: #0f0f0f;
    color: #eaeaea;
    line-height: 1.7;
  }
  
  /* ===============================
     FOG BACKGROUND
  ================================ */
  .fog {
    position: fixed;
    inset: 0;
    background: radial-gradient(
      circle at 50% 30%,
      rgba(255,255,255,.06),
      transparent 65%
    );
    pointer-events: none;
    z-index: -1;
  }
  
  /* ===============================
     HEADER
  ================================ */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 64px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .logo-img {
    width: 56px !important;
    height: 56px !important;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }
  
  .logo-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.6px;
  }
  
  
  
  nav a {
    margin-left: 28px;
    font-size: 14px;
    text-decoration: none;
    color: #aaa;
  }
  
  nav a:hover {
    color: #fff;
  }
  .logo-img {
    width: 48px;
  }
  
  
  /* ===============================
     HERO
  ================================ */
  .hero {
    padding: 120px 64px 160px;
  }
  
  .hero h1 {
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
  }
  
  .hero p {
    max-width: 560px;
    font-size: 18px;
    color: #cfcfcf;
    margin-bottom: 40px;
  }
  
  .cta {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  
  .cta:hover {
    background: #fff;
    color: #000;
  }
  
  /* ===============================
     EDITORIAL
  ================================ */
  /* ===== EDITORIAL ===== */
.editorial {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  padding: 120px 8vw;
  background: #000;
  color: #fff;
  align-items: center;
}

.editorial-label {
  font-size: 12px;
  letter-spacing: 3px;
  opacity: .5;
}

.editorial h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin: 20px 0;
}

.editorial p {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
}

.editorial-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 32px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  position: relative;
}

.editorial-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width .3s ease;
}

.editorial-link:hover::after {
  width: 100%;
}

/* VISUAL */
.editorial-visual {
  position: relative;
}

.editorial-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  opacity: .85;
}

/* kabut overlay */
.editorial-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.1),
    rgba(0,0,0,.8)
  );
}

  /* ===============================
     ARTICLES
  ================================ */
  .article-grid {
    padding: 120px 64px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px;
  }
  
  .article span {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .5;
  }
  
  .article h4 {
    font-size: 20px;
    margin: 12px 0;
  }
  
  .article p {
    font-size: 15px;
    color: #aaa;
  }
  
  /* ===============================
     MANIFESTO (BLACK & WHITE)
  ================================ */
  .manifesto {
    background: #f4f4f4;
    color: #000;
  }
  
  .manifesto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    min-height: 520px;
  }
  
  .manifesto-black {
    background: #000;
    color: #fff;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .manifesto-label {
    font-size: 12px;
    letter-spacing: 3px;
    opacity: .6;
    margin-bottom: 20px;
  }
  
  .manifesto-black h2 {
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    text-transform: uppercase;
  }
  
  .manifesto-white {
    background: #f4f4f4;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .manifesto-white p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 620px;
    margin-bottom: 32px;
  }
  
  .manifesto-footnote {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .6;
  }
  
 /* ===== FOOTER EPILOGUE ===== */
 footer-epilogue {
    background: linear-gradient(
      to bottom,
      #000 0%,
      #050505 40%,
      #020202 100%
    );
    color: #fff;
    padding: 180px 8vw 80px;
    position: relative;
    overflow: hidden;
  }
  
  /* kabut terakhir */
  .footer-epilogue::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at bottom,
      rgba(255,255,255,.06),
      rgba(0,0,0,.9) 70%
    );
    pointer-events: none;
  }
  
  
  /* INNER */
  .footer-epilogue-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
  }
  
  /* QUOTE */
  .footer-quote p {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 720px;
    opacity: .9;
  }
  
  /* DIVIDER */
  .footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(255,255,255,.4),
      transparent
    );
  }
  
  /* META */
  .footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  
  .footer-left h3 {
    font-size: 28px;
    font-weight: 800;
  }
  
  .footer-left span {
    font-size: 13px;
    opacity: .5;
  }
  
  /* LINKS */
  .footer-right a {
    margin-left: 24px;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    color: #fff;
    opacity: .5;
    transition: opacity .3s ease;
  }
  
  .footer-right a:hover {
    opacity: 1;
  }
  
  /* BOTTOM */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: .35;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .footer-quote p {
      font-size: 32px;
    }
  
    .footer-meta {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-right a {
      margin-left: 0;
      margin-right: 16px;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 8px;
    }
  }
  
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .footer-links {
      flex-direction: column;
      gap: 16px;
    }
  
    .footer-note {
      flex-direction: column;
      gap: 8px;
    }
  }
  
  
  /* ===============================
     RESPONSIVE
  ================================ */
  @media (max-width: 900px) {
    header,
    .hero,
    .editorial,
    .article-grid,
    footer {
      padding-left: 32px;
      padding-right: 32px;
    }
  
    .editorial {
      grid-template-columns: 1fr;
    }
  
    .manifesto-wrapper {
      grid-template-columns: 1fr;
    }
  
    .manifesto-black,
    .manifesto-white {
      padding: 60px 32px;
    }
  
    .logo-img {
      width: 36px;
    }
  
    .logo-text {
      font-size: 16px;
    }
  }
  @media (max-width: 900px) {
    .logo-img {
      width: 48px;
    }
  
    .logo-text {
      font-size: 17px;
    }
  }

  /* ===============================
   ABOUT / IDENTITY
================================ */
.about {
    padding: 140px 64px;
    background: #fff;
    color: #000;
  }
  
  .about-inner {
    max-width: 760px;
  }
  
  .about h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 32px;
  }
  
  .about p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 28px;
  }
  
  .about-muted {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .6;
  }
  
/* css */
  .about {
    padding: 140px 64px;
    background: #fff;
    color: #000;
  }
  
  .about-inner {
    max-width: 720px;
  }
  
  .about h2 {
    font-size: 48px;
    margin-bottom: 32px;
  }
  
  .about p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 24px;
  }
  
  .about-muted {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: .6;
    text-transform: uppercase;
  }
  
  .values {
    padding: 120px 64px;
    background: #000;
    color: #fff;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
  }
  
  .values span {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .4;
  }
  
  .values h3 {
    font-size: 24px;
    margin: 16px 0;
  }
  
  .values p {
    font-size: 15px;
    color: #aaa;
  }
  
  .cta-final {
    padding: 140px 64px;
    background: #fff;
    color: #000;
    text-align: center;
  }
  
  .cta-final h2 {
    font-size: 52px;
    margin-bottom: 24px;
  }
  
  .cta-final p {
    font-size: 18px;
    margin-bottom: 40px;
  }
  
  .cta.dark {
    border: 1px solid #000;
    color: #000;
  }
  
  .cta.dark:hover {
    background: #000;
    color: #fff;
  }
  
  /* ===============================
   SCROLL REVEAL
================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s ease, transform .9s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

/* ARTICLE CARD */
.article {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  /* FOTO DIKUNCI UKURANNYA */
  .article-thumb {
    width: 100%;
    height: 220px;              /* ← PATEN: tinggi fix */
    overflow: hidden;
    background: #111;
  }
  
  /* FOTO AUTO-CROP */
  .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* ← kunci biar rapi */
    object-position: center;    /* fokus tengah */
    filter: grayscale(100%) contrast(1.05);
    transition: transform .6s ease;
  }
  
  /* HOVER HALUS */
  .article:hover .article-thumb img {
    transform: scale(1.06);
  }
  
  /* ===== VALUES SECTION ===== */
.values {
    padding: 120px 8vw;
    background: linear-gradient(
      to bottom,
      #000,
      #0b0b0b,
      #000
    );
    color: #fff;
    position: relative;
  }
  
  .values-header {
    max-width: 520px;
    margin-bottom: 80px;
  }
  
  .values-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
  }
  
  .values-header p {
    margin-top: 12px;
    color: rgba(255,255,255,.65);
    font-size: 15px;
    line-height: 1.7;
  }
  
  /* GRID */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
  }
  
  /* ITEM */
  .value-item {
    position: relative;
    padding-left: 32px;
    border-left: 1px solid rgba(255,255,255,.15);
    transition: all .4s ease;
  }
  
  .value-item:hover {
    border-left-color: #fff;
    transform: translateY(-6px);
  }
  
  /* NUMBER */
  .value-number {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .45;
  }
  
  /* TITLE */
  .value-item h3 {
    margin: 12px 0;
    font-size: 20px;
    font-weight: 600;
  }
  
  /* TEXT */
  .value-item p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
  }
  
  /* HOVER DETAIL */
  .value-item::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0;
    width: 1px;
    height: 0;
    background: #fff;
    transition: height .4s ease;
  }
  
  .value-item:hover::before {
    height: 100%;
  }
  
  /* ===== CONTACT ===== */
.contact {
    padding: 140px 8vw;
    background: #000;
    color: #fff;
    text-align: center;
    position: relative;
  }
  
  /* subtle grain / fog feel */
  .contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top,
      rgba(255,255,255,.06),
      transparent 60%
    );
    pointer-events: none;
  }
  
  .contact-inner {
    max-width: 640px;
    margin: auto;
  }
  
  .contact-label {
    font-size: 12px;
    letter-spacing: 4px;
    opacity: .5;
  }
  
  .contact h2 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin: 24px 0;
  }
  
  .contact p {
    font-size: 15px;
    line-height: 1.8;
    opacity: .75;
  }
  
  /* ACTIONS */
  .contact-actions {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .contact-btn {
    padding: 14px 28px;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all .3s ease;
  }
  
  /* primary */
  .contact-btn.primary {
    background: #fff;
    color: #000;
  }
  
  .contact-btn.primary:hover {
    background: #eaeaea;
  }
  
  /* ghost */
  .contact-btn.ghost {
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
  }
  
  .contact-btn.ghost:hover {
    background: rgba(255,255,255,.08);
  }
 
  /* =========================
   MOBILE RESPONSIVE
   ========================= */
@media (max-width: 768px) {

    body {
      font-size: 15px;
    }
  
    /* HEADER */
    .header {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
    }
  
    .brand {
      margin-bottom: 12px;
    }
  
    .logo-img {
      width: 36px;
      height: 36px;
    }
  
    .nav {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 13px;
    }
  
    /* HERO */
    .hero {
      padding: 80px 20px 60px;
    }
  
    .hero h1 {
      font-size: 36px;
      line-height: 1.1;
    }
  
    .hero-desc {
      font-size: 14px;
      margin-top: 20px;
    }
  
    /* ABOUT */
    .about,
    .manifesto,
    .cta-final {
      padding: 60px 20px;
    }
  
    .about h2 {
      font-size: 24px;
    }
  
    /* VALUES */
    .values {
      padding: 60px 20px;
    }
  
    .values-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    /* EDITORIAL */
    .editorial {
      grid-template-columns: 1fr;
      padding: 60px 20px;
    }
  
    .editorial-visual img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }
  
    /* MANIFESTO */
    .manifesto-wrapper {
      grid-template-columns: 1fr;
    }
  
    .manifesto-black,
    .manifesto-white {
      padding: 40px 24px;
    }
  
    /* ARTICLES */
    .articles {
      padding: 60px 20px;
    }
  
    .article-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .article img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }
  
    /* CONTACT */
    .contact {
      padding: 60px 20px;
    }
  
    /* FOOTER */
    .footer {
      flex-direction: column;
      gap: 8px;
      padding: 32px 20px;
      text-align: center;
      font-size: 12px;
    }
  }
  @media (max-width: 768px) {
    .header {
      padding: 20px 24px;
    }
  
    .brand {
      gap: 10px;
    }
  
    .logo-img {
      width: 34px;
    }
  
    .logo-text {
      font-size: 16px;
    }
  
    .nav {
      display: none; /* opsional: sembunyikan nav di mobile */
    }
  }
  @media (max-width: 768px) {
    .logo-img {
      width: 48px !important;
      height: 48px !important;
    }
  
    .logo-text {
      font-size: 18px;
    }
  }
  