/* SensiWear Indonesia | Panduan Bio-Comfort & Busana Dalam Organik | sensiwear.id */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --emerald-dark: #022C22;
  --emerald-main: #047857;
  --emerald-light: #10B981;
  --emerald-soft: #D1FAE5;
  --emerald-bg: #F0FDF4;
  --slate-dark: #0F172A;
  --slate-main: #334155;
  --slate-muted: #64748B;
  --bg-page: #F8FAF9;
  --card-white: #FFFFFF;
  --border-color: #E2E8F0;
  --border-emerald: #A7F3D0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(4, 120, 87, 0.04);
  --shadow-md: 0 10px 30px rgba(4, 120, 87, 0.08);
  --shadow-lg: 0 18px 48px rgba(2, 44, 34, 0.12);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-page);
  color: var(--slate-dark);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Top Bar ── */
.topbar {
  background: var(--emerald-dark);
  color: #A7F3D0;
  font-size: 0.76rem;
  padding: 9px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar strong {
  color: #FFFFFF;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  color: #6EE7B7;
}

/* ── Navigation Header ── */
.hdr {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}
.hdr-in {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 36px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--emerald-main), var(--emerald-light));
  color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--emerald-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.brand-name span {
  color: var(--emerald-light);
}
.brand-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-muted);
  font-weight: 700;
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-lnk {
  color: var(--slate-main);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-lnk:hover {
  color: var(--emerald-main);
  background: var(--emerald-bg);
}
.nav-lnk.active {
  color: var(--emerald-main);
  background: var(--emerald-soft);
  font-weight: 700;
}
.btn-emerald {
  background: var(--emerald-main);
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.25);
  margin-left: 8px;
}
.btn-emerald:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
}

/* ── Category Bar ── */
.cat-bar {
  background: var(--emerald-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cat-bar-in {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
}
.cb-item {
  color: #A7F3D0;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 12px 18px;
  transition: all 0.2s ease;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.cb-item:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.05);
}
.cb-item.active {
  color: #FFFFFF;
  border-bottom-color: var(--emerald-light);
}

/* ── Hero Section ── */
.hero {
  background: linear-gradient(135deg, #022C22 0%, #064E3B 50%, #047857 100%);
  color: #FFFFFF;
  padding: 60px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-in {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A7F3D0;
  margin-bottom: 20px;
  border: 1px solid rgba(167, 243, 208, 0.25);
}
.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-h1 span {
  color: #6EE7B7;
}
.hero-p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 620px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-mint {
  background: var(--emerald-light);
  color: var(--emerald-dark);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}
.btn-mint:hover {
  background: #6EE7B7;
  transform: translateY(-2px);
}
.btn-outline-hero {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #FFFFFF;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}
.btn-outline-hero:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.1);
}
.hero-img-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.15);
}

/* ── Container Layouts ── */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 36px;
}
.sec-padding {
  padding: 68px 0;
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.sec-tag {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--emerald-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sec-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--emerald-main);
}
.sec-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  color: var(--emerald-dark);
  line-height: 1.2;
  margin-bottom: 32px;
  font-weight: 700;
}

/* ── Bio Comfort Card Grid ── */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 30px;
}
.bio-card {
  background: var(--card-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.bio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-emerald);
}
.bio-img-box {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.bio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bio-card:hover .bio-img {
  transform: scale(1.05);
}
.bio-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(2, 44, 34, 0.85);
  backdrop-filter: blur(4px);
  color: #A7F3D0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
}
.bio-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.bio-h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  color: var(--slate-dark);
  line-height: 1.35;
  margin-bottom: 10px;
  font-weight: 700;
}
.bio-h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.bio-h3 a:hover {
  color: var(--emerald-main);
}
.bio-p {
  color: var(--slate-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.bio-ftr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--slate-muted);
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
}
.bio-link {
  color: var(--emerald-main);
  font-weight: 700;
  text-decoration: none;
}
.bio-link:hover {
  text-decoration: underline;
}

/* ── Photo Gallery Grid ── */
.gallery-sec {
  background: var(--emerald-bg);
  border-top: 1px solid var(--border-emerald);
  border-bottom: 1px solid var(--border-emerald);
  padding: 72px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.gallery-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}
.gallery-info {
  padding: 18px;
  background: #FFFFFF;
}
.gallery-h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--emerald-dark);
  margin-bottom: 4px;
}
.gallery-desc {
  font-size: 0.82rem;
  color: var(--slate-muted);
}

/* ── Sidebar Component ── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.widget {
  background: var(--card-white);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.widget-h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: var(--emerald-dark);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--emerald-soft);
  font-weight: 700;
}
.widget-post {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  text-decoration: none;
}
.widget-post:last-child {
  margin-bottom: 0;
}
.wp-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.wp-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wp-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--emerald-main);
  letter-spacing: 0.06em;
}
.wp-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-dark);
  line-height: 1.35;
  transition: color 0.2s;
}
.widget-post:hover .wp-title {
  color: var(--emerald-main);
}

/* ── Article Content Detail ── */
.article-header {
  margin-bottom: 32px;
}
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--slate-muted);
  margin-top: 12px;
}
.article-banner {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}
.content-body h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--emerald-dark);
  margin: 32px 0 16px;
  font-weight: 700;
}
.content-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate-main);
  margin-bottom: 20px;
}
.content-body ul, .content-body ol {
  margin: 0 0 24px 24px;
}
.content-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ── Policy Container ── */
.policy-box {
  background: var(--card-white);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.policy-box h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  color: var(--emerald-dark);
  margin-bottom: 8px;
  font-weight: 800;
}
.policy-box .updated {
  font-size: 0.85rem;
  color: var(--slate-muted);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}
.policy-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  color: var(--emerald-main);
  margin: 28px 0 12px;
  font-weight: 700;
}
.policy-box p, .policy-box ul {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--slate-main);
  margin-bottom: 16px;
}

/* ── Footer ── */
.footer {
  background: var(--emerald-dark);
  color: #A7F3D0;
  padding: 60px 0 30px;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 14px;
  font-weight: 800;
}
.footer-brand span {
  color: #6EE7B7;
}
.footer-desc {
  line-height: 1.7;
  margin-bottom: 18px;
  color: #D1FAE5;
}
.footer-disclaimer {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--emerald-light);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #E6F4EA;
}
.footer-h {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #A7F3D0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #FFFFFF;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-in, .grid-2col {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hdr-in {
    padding: 0 16px;
  }
  .container {
    padding: 0 16px;
  }
}
