/* SilkLace Indonesia | Jurnal Kemewahan & Kenyamanan Lingerie | tagrep.shop */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold-dark: #92400E;
  --gold-main: #D97706;
  --gold-light: #FBBF24;
  --gold-soft: #FEF3C7;
  --gold-bg: #FFFBEB;
  --charcoal-dark: #18181B;
  --charcoal-main: #27272A;
  --charcoal-muted: #71717A;
  --bg-cream: #FAF7F2;
  --card-white: #FFFFFF;
  --border-stone: #E7E5E4;
  --border-gold: #FDE68A;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-subtle: 0 4px 20px rgba(24, 24, 27, 0.04);
  --shadow-hover: 0 12px 36px rgba(217, 119, 6, 0.12);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.06);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-cream);
  color: var(--charcoal-dark);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Top Announcement Bar ── */
.topbar {
  background: var(--charcoal-dark);
  color: #D4D4D8;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  padding: 9px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar strong {
  color: #FCD34D;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  color: #A1A1AA;
}

/* ── Navigation Header ── */
.header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-stone);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 36px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--charcoal-dark), #3F3F46);
  color: #FCD34D;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.4rem;
  border: 1px solid rgba(252, 211, 77, 0.4);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.brand-meta {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--charcoal-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand-name span {
  color: var(--gold-main);
  font-style: italic;
}
.brand-tag {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--charcoal-muted);
  font-weight: 600;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-item {
  color: var(--charcoal-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}
.nav-item:hover {
  color: var(--gold-main);
  background: var(--gold-soft);
}
.nav-item.active {
  color: var(--gold-dark);
  background: var(--gold-soft);
  font-weight: 600;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.25);
  margin-left: 8px;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
}

/* ── Category Subbar ── */
.subbar {
  background: #18181B;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.subbar-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
}
.subbar-link {
  color: #A1A1AA;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 13px 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.subbar-link:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.04);
}
.subbar-link.active {
  color: #FCD34D;
  border-bottom-color: #FCD34D;
}

/* ── Hero Showcase Section ── */
.hero-sec {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-cream) 100%);
  padding: 64px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--border-stone);
}
.hero-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  border: 1px solid var(--border-gold);
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--charcoal-dark);
  line-height: 1.12;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-h1 span {
  color: var(--gold-main);
  font-style: italic;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--charcoal-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-dark {
  background: var(--charcoal-dark);
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-dark:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--border-stone);
  color: var(--charcoal-main);
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  background: #FFFFFF;
}
.btn-outline:hover {
  border-color: var(--gold-main);
  color: var(--gold-main);
}
.hero-frame {
  position: relative;
}
.hero-img-show {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 4px solid #FFFFFF;
}
.hero-card-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-main);
  line-height: 1;
}
.badge-lbl {
  font-size: 0.78rem;
  color: var(--charcoal-muted);
  line-height: 1.3;
}

/* ── Container Layouts ── */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 36px;
}
.sec-padding {
  padding: 72px 0;
}
.grid-main-side {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}

.title-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.title-tag::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold-main);
}
.heading-sec {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: var(--charcoal-dark);
  line-height: 1.18;
  margin-bottom: 36px;
  font-weight: 600;
}

/* ── Luxury Card Grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.luxe-card {
  background: var(--card-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-stone);
  box-shadow: var(--shadow-subtle);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.luxe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}
.card-media {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.luxe-card:hover .card-photo {
  transform: scale(1.06);
}
.card-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(6px);
  color: #FCD34D;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
}
.card-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--charcoal-dark);
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: 600;
}
.card-h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.card-h3 a:hover {
  color: var(--gold-main);
}
.card-desc {
  color: var(--charcoal-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
}
.card-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--charcoal-muted);
  border-top: 1px solid #F4F4F5;
  padding-top: 16px;
}
.card-link-gold {
  color: var(--gold-main);
  font-weight: 600;
  text-decoration: none;
}
.card-link-gold:hover {
  text-decoration: underline;
}

/* ── Lookbook Gallery Grid ── */
.lookbook-sec {
  background: #18181B;
  color: #FFFFFF;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.lookbook-sec .title-tag {
  color: #FCD34D;
}
.lookbook-sec .title-tag::before {
  background: #FCD34D;
}
.lookbook-sec .heading-sec {
  color: #FFFFFF;
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lb-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #27272A;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.lb-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.lb-item:hover .lb-img {
  transform: scale(1.05);
}
.lb-info {
  padding: 20px;
  background: linear-gradient(180deg, rgba(24,24,27,0.7) 0%, #18181B 100%);
}
.lb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.lb-text {
  font-size: 0.82rem;
  color: #A1A1AA;
}

/* ── Sidebar Component ── */
.side-widget {
  background: var(--card-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-stone);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 32px;
}
.side-h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--charcoal-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-soft);
  font-weight: 600;
}
.side-post {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  text-decoration: none;
}
.side-post:last-child {
  margin-bottom: 0;
}
.sp-img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.sp-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-main);
  letter-spacing: 0.08em;
}
.sp-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  line-height: 1.35;
  transition: color 0.2s;
}
.side-post:hover .sp-title {
  color: var(--gold-main);
}

/* ── Article Detail View ── */
.article-header {
  margin-bottom: 32px;
}
.article-meta-row {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--charcoal-muted);
  margin-top: 12px;
}
.article-hero-banner {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 36px;
  box-shadow: var(--shadow-card);
}
.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--charcoal-dark);
  margin: 36px 0 16px;
  font-weight: 600;
}
.article-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--charcoal-main);
  margin-bottom: 22px;
}
.article-content ul, .article-content ol {
  margin: 0 0 24px 24px;
}
.article-content li {
  margin-bottom: 10px;
  line-height: 1.75;
}

/* ── Policy Container ── */
.policy-card {
  background: var(--card-white);
  padding: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-stone);
  box-shadow: var(--shadow-subtle);
}
.policy-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--charcoal-dark);
  margin-bottom: 8px;
  font-weight: 600;
}
.policy-card .date-badge {
  font-size: 0.85rem;
  color: var(--charcoal-muted);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-stone);
  padding-bottom: 14px;
}
.policy-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin: 32px 0 14px;
  font-weight: 600;
}
.policy-card p, .policy-card ul {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--charcoal-main);
  margin-bottom: 18px;
}

/* ── Footer ── */
.footer {
  background: var(--charcoal-dark);
  color: #A1A1AA;
  padding: 64px 0 32px;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-logo span {
  color: #FCD34D;
  font-style: italic;
}
.footer-desc {
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-disclaimer-box {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold-main);
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.78rem;
  line-height: 1.65;
  color: #D4D4D8;
}
.footer-heading {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #A1A1AA;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #FCD34D;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .grid-main-side {
    grid-template-columns: 1fr;
  }
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .lookbook-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    padding: 0 18px;
  }
  .container {
    padding: 0 18px;
  }
}
