/* ========================================
   BROLAPAK — Stylesheet
   Modern Heritage Fashion · Indonesia
   ======================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Palette */
  --cream: #F4EFE6;
  --cream-2: #EAE2D2;
  --bone: #FAF7F1;
  --ink: #1B1815;
  --ink-2: #3A3631;
  --muted: #807769;
  --line: #D8CFC0;
  --line-soft: #E8DFCF;
  --clay: #B8633D;
  --clay-dark: #8E4A2C;
  --gold: #A88B57;
  --white: #FFFFFF;
  --success: #4F6B4A;
  --error: #B5453E;

  /* Typography */
  --font-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1380px;
  --container-narrow: 980px;
  --pad: clamp(20px, 4vw, 56px);
  --radius-sm: 2px;
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s;
  --t: 0.35s;
  --t-slow: 0.6s;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

::selection { background: var(--clay); color: var(--bone); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay);
}
.eyebrow--ink { color: var(--ink); }
.eyebrow--cream { color: var(--cream); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
em.serif-italic { font-style: italic; font-weight: 400; }

p { margin: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--t) var(--ease);
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 14px; height: 14px; transition: transform var(--t) var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn--solid { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn--solid:hover { background: var(--clay); color: var(--bone); border-color: var(--clay); }
.btn--ghost { color: var(--bone); border-color: var(--bone); }
.btn--ghost:hover { background: var(--bone); color: var(--ink); }
.btn--dark { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn--dark:hover { background: var(--clay); border-color: var(--clay); }
.btn--outline { color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bone); }
.btn--clay { background: var(--clay); color: var(--bone); border-color: var(--clay); }
.btn--clay:hover { background: var(--clay-dark); border-color: var(--clay-dark); }
.btn--full { width: 100%; justify-content: center; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}
.announce__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 60px;
}
.announce__track span { display: inline-flex; align-items: center; gap: 60px; }
.announce__track span::after {
  content: '✦';
  color: var(--clay);
  font-size: 10px;
  margin-left: 60px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- HEADER ---------- */
.header {
  background: rgba(250, 247, 241, 0.92);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}
.nav { display: flex; gap: 36px; }
.nav a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast) ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--clay);
  transition: width var(--t) var(--ease);
}
.nav a:hover { color: var(--clay); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.sale { color: var(--clay); }

.logo-link { display: inline-block; }
.logo-link img { height: 38px; width: auto; }

.header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}
.icon-btn {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  position: relative;
  transition: opacity var(--t-fast) ease;
  color: var(--ink);
}
.icon-btn:hover { opacity: 0.6; }
.icon-btn img, .icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--clay);
  color: var(--cream);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  letter-spacing: 0;
}

.menu-toggle { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--bone);
  align-self: flex-end;
  padding: 0 var(--pad) 90px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--cream);
  opacity: 0.95;
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--clay);
}
.hero h1 {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400;
  color: var(--bone);
  line-height: 0.95;
  max-width: 900px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  display: block;
  letter-spacing: -0.01em;
}
.hero__lead {
  margin-top: 32px;
  font-size: 16px;
  max-width: 480px;
  line-height: 1.6;
  color: rgba(244,239,230,0.85);
  font-weight: 300;
}
.hero__ctas {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 30px;
  right: var(--pad);
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: var(--bone);
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: var(--cream);
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  margin-top: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--clay); }
.page-hero p {
  max-width: 580px;
  margin: 24px auto 0;
  font-weight: 300;
  font-size: 16px;
  color: var(--ink-2);
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}
.breadcrumb a:hover { color: var(--clay); }
.breadcrumb span { color: var(--ink-2); }

/* ---------- SECTIONS ---------- */
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--narrow { padding: clamp(60px, 7vw, 100px) 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.section-head__title { max-width: 720px; }
.section-head__title h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  margin-top: 14px;
}
.section-head__title h2 em { font-style: italic; color: var(--clay); }
.section-head__link {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  transition: all var(--t-fast) ease;
}
.section-head__link:hover { color: var(--clay); border-color: var(--clay); }
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---------- CATEGORY GRID ---------- */
.cats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.cat {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-2);
  cursor: pointer;
  display: block;
}
.cat:nth-child(1) { grid-column: span 5; aspect-ratio: 4/5; }
.cat:nth-child(2) { grid-column: span 7; aspect-ratio: 7/5; }
.cat:nth-child(3) { grid-column: span 7; aspect-ratio: 7/4; }
.cat:nth-child(4) { grid-column: span 5; aspect-ratio: 4/4; }
.cat__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease);
}
.cat:hover .cat__img { transform: scale(1.06); }
.cat__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%);
}
.cat__label {
  position: absolute;
  left: 32px;
  bottom: 28px;
  right: 32px;
  color: var(--bone);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.cat__label h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.cat__label p {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.85;
}
.cat__arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--bone);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--t) var(--ease);
  color: var(--bone);
}
.cat:hover .cat__arrow {
  background: var(--clay);
  border-color: var(--clay);
  transform: rotate(-45deg);
}
.cat__arrow svg { width: 16px; height: 16px; }

/* ---------- PRODUCT GRID ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 22px;
}
.products--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  cursor: pointer;
  display: block;
}
.card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: 18px;
}
.card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease, transform 0.9s var(--ease);
}
.card__img--hover { opacity: 0; }
.card:hover .card__img--hover { opacity: 1; }
.card:hover .card__img--main { transform: scale(1.04); }

.card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bone);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
  font-weight: 600;
  z-index: 2;
}
.card__tag--clay { background: var(--clay); color: var(--bone); }
.card__tag--ink { background: var(--ink); color: var(--bone); }

.card__wish {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bone);
  display: grid;
  place-items: center;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--t) ease, transform var(--t) ease;
  color: var(--ink);
}
.card:hover .card__wish { opacity: 1; }
.card__wish:hover { transform: scale(1.08); background: var(--clay); color: var(--bone); }
.card__wish.active { background: var(--clay); color: var(--bone); opacity: 1; }
.card__wish img, .card__wish svg { width: 16px; height: 16px; }

.card__quick {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--t) var(--ease);
  z-index: 2;
  cursor: pointer;
}
.card:hover .card__quick { transform: translateY(0); }
.card__quick:hover { background: var(--clay); }

.card__brand {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.card__price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.card__price del { color: var(--muted); font-weight: 400; }
.card__price ins { text-decoration: none; color: var(--clay); }

.card__swatches { display: flex; gap: 6px; margin-top: 10px; }
.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform var(--t-fast) ease;
}
.swatch:hover { transform: scale(1.2); }

/* ---------- EDITORIAL SPLIT ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--cream);
  align-items: stretch;
}
.editorial__media {
  background-size: cover;
  background-position: center;
  min-height: 640px;
}
.editorial__body {
  padding: clamp(60px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial__body h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400;
  margin: 20px 0 28px;
}
.editorial__body h2 em { font-style: italic; color: var(--clay); }
.editorial__body p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 520px;
  font-weight: 300;
}
.editorial__body .btn { margin-top: 32px; align-self: flex-start; }
.editorial__stats {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.editorial__stats div .num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.editorial__stats div .lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* ---------- LOOKBOOK MARQUEE ---------- */
.lookbook { padding: clamp(80px, 10vw, 140px) 0; background: var(--bone); overflow: hidden; }
.lookbook__head { text-align: center; max-width: 720px; margin: 0 auto 60px; padding: 0 var(--pad); }
.lookbook__head h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 400; margin-top: 14px; }
.lookbook__head h2 em { font-style: italic; color: var(--clay); }
.lookbook__head p { margin-top: 16px; color: var(--ink-2); font-weight: 300; }
.lookbook__track {
  display: flex;
  gap: 22px;
  animation: lookbookScroll 60s linear infinite;
  width: max-content;
}
.lookbook__track:hover { animation-play-state: paused; }
.lookbook__item {
  width: 320px;
  flex-shrink: 0;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}
.lookbook__item::after {
  content: attr(data-look);
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: var(--bone);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: rgba(27,24,21,0.6);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}
@keyframes lookbookScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- PILLARS ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: 50px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--t) ease;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--cream); }
.pillar__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.pillar__icon svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.4; }
.pillar h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 6px;
}
.pillar p { font-size: 13px; color: var(--ink-2); line-height: 1.6; font-weight: 300; }

/* ---------- JOURNAL ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.article { cursor: pointer; transition: transform var(--t-slow) ease; display: block; }
.article:hover { transform: translateY(-4px); }
.article__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: 22px;
}
.article__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.article:hover .article__img { transform: scale(1.06); }
.article__category {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--bone);
  color: var(--ink);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.article__meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.article__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
  transition: color var(--t) ease;
}
.article:hover .article__title { color: var(--clay); }
.article__excerpt {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  font-weight: 300;
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184,99,61,0.15), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(168,139,87,0.08), transparent 40%);
  pointer-events: none;
}
.newsletter__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter__text h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--bone);
}
.newsletter__text h2 em { font-style: italic; color: var(--clay); }
.newsletter__text p {
  margin-top: 22px;
  font-weight: 300;
  font-size: 15px;
  color: rgba(244,239,230,0.7);
  max-width: 460px;
}
.newsletter__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 18px;
  font-weight: 600;
}
.newsletter__form { display: flex; flex-direction: column; gap: 16px; }
.newsletter__input {
  display: flex;
  border-bottom: 1px solid rgba(244,239,230,0.3);
  padding-bottom: 14px;
  align-items: center;
  transition: border-color var(--t) ease;
}
.newsletter__input:focus-within { border-color: var(--clay); }
.newsletter__input input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--bone);
  font-size: 15px;
  padding: 8px 0;
  outline: none;
}
.newsletter__input input::placeholder { color: rgba(244,239,230,0.5); }
.newsletter__input button {
  background: var(--bone);
  color: var(--ink);
  padding: 12px 26px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all var(--t) ease;
}
.newsletter__input button:hover { background: var(--clay); color: var(--bone); }
.newsletter__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(244,239,230,0.6);
  cursor: pointer;
}
.newsletter__check input { margin-top: 4px; accent-color: var(--clay); }

/* ---------- FOOTER ---------- */
.footer { background: var(--cream); padding: 90px 0 30px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer__brand .logo-link img { height: 44px; }
.footer__brand p {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 320px;
  font-weight: 300;
}
.footer__socials { display: flex; gap: 12px; margin-top: 24px; }
.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  transition: all var(--t) ease;
}
.footer__socials a:hover { background: var(--ink); }
.footer__socials a:hover svg { stroke: var(--bone); }
.footer__socials svg { width: 16px; height: 16px; stroke: var(--ink); fill: none; stroke-width: 1.5; }
.footer h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--ink);
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: 13px;
  color: var(--ink-2);
  transition: color var(--t-fast) ease;
}
.footer__links a:hover { color: var(--clay); }
.footer__contact {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.8;
  font-weight: 300;
}
.footer__contact strong { color: var(--ink); font-weight: 600; }
.footer__bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.footer__legal { display: flex; gap: 20px; margin-top: 6px; }
.footer__legal a {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  transition: color var(--t-fast) ease;
}
.footer__legal a:hover { color: var(--clay); }
.footer__pay { display: flex; gap: 12px; align-items: center; }
.footer__pay span {
  height: 28px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}

/* ---------- INNER PAGE: ABOUT ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story__media {
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/5;
  background-color: var(--cream-2);
}
.about-story__body h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin: 14px 0 24px;
}
.about-story__body h2 em { font-style: italic; color: var(--clay); }
.about-story__body p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 16px;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.value__num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--clay);
  margin-bottom: 14px;
}
.value h3 {
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 500;
}
.value p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
}
.team-card__avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}
.team-card h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.team-card p {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- INNER PAGE: COLLECTION (PRIA/WANITA) ---------- */
.collection-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px var(--pad);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.filters { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: var(--bone);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--t-fast) ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.sort {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 4px 0;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  cursor: pointer;
}

/* ---------- INNER PAGE: JOURNAL ---------- */
.article-hero {
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0 60px;
  max-width: 760px;
  margin: 0 auto;
}
.article-hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  margin: 20px 0;
  line-height: 1.1;
}
.article-hero h1 em { font-style: italic; color: var(--clay); }
.article-hero__meta {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.article-hero__cover {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  margin: 50px 0;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.article-body p {
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-2);
}
.article-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--clay);
}
.article-body h2 {
  font-size: 32px;
  margin: 50px 0 20px;
  font-weight: 500;
}
.article-body blockquote {
  border-left: 2px solid var(--clay);
  padding: 10px 0 10px 28px;
  margin: 40px 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

/* ---------- INTERSECTION REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .products { grid-template-columns: repeat(2, 1fr); }
  .products--3 { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--line); }
  .editorial { grid-template-columns: 1fr; }
  .editorial__media { min-height: 420px; }
  .newsletter__inner { grid-template-columns: 1fr; gap: 50px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .values { grid-template-columns: 1fr; gap: 30px; }
  .team { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__inner { grid-template-columns: auto 1fr auto; }
  .nav { display: none; }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: var(--ink);
  }
  .menu-toggle svg { width: 22px; height: 22px; }
  .logo-link img { height: 32px; }
  .header__actions { gap: 16px; }

  .hero { min-height: 78vh; }
  .hero__content { padding-bottom: 60px; }
  .hero__scroll { display: none; }

  .cats { grid-template-columns: 1fr; }
  .cats .cat { grid-column: span 12 !important; aspect-ratio: 4/3 !important; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }

  .editorial__body { padding: 60px 24px; }
  .lookbook__item { width: 240px; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .team { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 200;
  padding: 30px var(--pad);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 40px;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color var(--t-fast) ease;
}
.mobile-menu nav a:hover { color: var(--clay); }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--bone);
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
  z-index: 300;
  opacity: 0;
  transition: all var(--t) ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast::before {
  content: '✓';
  color: var(--clay);
  font-weight: 700;
}
