:root{
  --bg-dark: #0a0a0a;
  --bg-light: #e9e6e2;
  --text-dark: #141414;
  --text-light: #ffffff;
  --muted: rgba(20, 20, 20, 0.55);
  --grid: rgba(20, 20, 20, 0.06);
  --line: rgba(20, 20, 20, 0.22);
  --font-head: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;

  /* derived (default = dark) */
  --bg: var(--bg-dark);
  --text: var(--text-light);
  --muted-current: rgba(255, 255, 255, 0.60);
  --grid-current: rgba(255, 255, 255, 0.08);
  --line-current: rgba(255, 255, 255, 0.18);
  --card: rgba(255, 255, 255, 0.05);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-body);
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* main background lines (vertical 5% | 15% | 60% | 15% | 5%) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(to right,
      transparent 0,
      transparent 5vw,
      var(--grid-current) 5vw,
      var(--grid-current) calc(5vw + 2px),
      transparent calc(5vw + 2px),
      transparent 20vw,
      var(--grid-current) 20vw,
      var(--grid-current) calc(20vw + 2px),
      transparent calc(20vw + 2px),
      transparent 80vw,
      var(--grid-current) 80vw,
      var(--grid-current) calc(80vw + 2px),
      transparent calc(80vw + 2px),
      transparent 95vw,
      var(--grid-current) 95vw,
      var(--grid-current) calc(95vw + 2px),
      transparent calc(95vw + 2px),
      transparent 100%
    );
  opacity:1;
}

/* topbar */
.topbar{
  position:fixed;
  z-index:60;
  left:0; right:0; top:0;
  padding:18px 22px;
  display:grid;
  grid-template-columns: 44px 1fr 120px;
  align-items:center;
  gap:18px;
  background: transparent;
}
.topbar a{color:var(--text); text-decoration:none; font-weight:500; letter-spacing:.02em}
.topbar a:hover{opacity:.9}

.menuBtn{
  display:flex;
  align-items:center;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
  text-decoration:none;
}
.menuBtn__logo{
  height  :32px;
    width:auto;
    max-width:120px:32px;
  object-fit:contain;
  display:block;
}

.topnav{
  display:flex;
  justify-content:center;
  gap:22px;
  white-space:nowrap;
}
.topnav a{
  color: rgba(255,255,255,.92);
  font-weight:500;
}
.topnav a.is-active{ color: var(--text); font-weight:700; }
.topbar__contact{
  justify-self:end;
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* light theme (for stage like screenshot 2) */
.theme-light{
  --bg: var(--bg-light);
  --text: var(--text-dark);
  --muted-current: var(--muted);
  --grid-current: var(--grid);
  --line-current: var(--line);
  --card: rgba(20, 20, 20, 0.04);

  background: var(--bg);
  color: var(--text);
}
.theme-light .topbar{
  background: rgba(233,230,226,.92);
  border-bottom: 1px solid rgba(20,20,20,.10);
}
.theme-light .topbar a{ color: rgba(20,20,20,.88); }
.theme-light .topnav a.is-active{ color: rgba(20,20,20,.98); }
.theme-light .menuBtn__line{ background: rgba(20,20,20,.88); }

/* smoother wrapper/content */
#smooth-wrapper{ position:fixed; inset:0; overflow:hidden; }
#smooth-content{ min-height:100vh; }

/* sections */
.container{ width:min(1100px, 92vw); margin:0 auto; }
.section{ padding:110px 0; border-top:1px solid var(--line-current); }
.h2{ font-size:40px; margin:0 0 18px; letter-spacing:-.02em; }
.muted{ color:var(--muted-current); }

/* typography */
.heroUI__big,
.h2{
  font-family: var(--font-head);
}

/* hero */
.hero{
  min-height:100vh;
  display:grid;
  align-items:center;
  padding:110px 0 70px;
  position:relative;
  border-bottom:1px solid var(--line);
}
.hero__inner{ width:min(1100px, 92vw); margin:0 auto; position:relative; z-index:2;}
.kicker{ color:var(--muted); letter-spacing:.18em; text-transform:uppercase; font-size:12px; }
.title{
  font-size: clamp(56px, 9vw, 120px);
  line-height:.92;
  margin:14px 0 18px;
  letter-spacing:-.04em;
}
.lead{ max-width:52ch; color:var(--muted); font-size:16px; line-height:1.65; }
.hero__cta{ margin-top:28px; display:flex; align-items:center; gap:14px; }
.btn{
  display:inline-block;
  padding:12px 16px;
  border:1px solid rgba(244,244,245,.25);
  border-radius:999px;
}
.btn:hover{ border-color:rgba(244,244,245,.55); }
.hint{ color:var(--muted); font-size:13px; }

/* stage (pinned intro like 1.png -> 2.png) */
.stage{
  min-height:100vh;
  position:relative;
  padding:0;
  border-bottom:1px solid var(--line-current);
}
.stage--hero {
  background: var(--bg-dark);
}
.heroSlider{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.heroSlider__frame{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  transition: border 0.3s ease;
  border-radius: 0;
}
.heroSlider__slides {
  position: absolute;
  inset: 0;
}
.heroSlider__slides .slide__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translate3d(0,0,0) scale(1);
  will-change: transform, opacity;
  transition: none;
}
.heroSlider__slides .slide__img.is-active {
  animation: none;
}

/* Hero content - positioned like workSection */
.hero__content {
  position: absolute;
  bottom: 20px;
  left: 20vw;
  width: 60vw;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
}
.theme-light .hero__content {
  opacity: 1;
}
.hero__content .workDetail__strong,
.hero__content .workDetail__muted,
.hero__content .workDetail__k,
.hero__content .workDetail__v {
  color: rgba(11,11,12,.88);
}
.hero__content .workDetail__k {
  color: rgba(11,11,12,.42);
}
.hero__content .workDetail__muted {
  color: rgba(11,11,12,.55);
}
.hero__content .workDetail__row {
  width: 100%;
  margin: 0;
}

/* Work Sections - each slide as separate section */
.workSection {
  min-height: 100vh;
  position: relative;
  padding: 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.workSection__inner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workSection__frame {
  position: absolute;
  top: 0;
  left: 20vw;
  width: 60vw;
  height: calc(100vh - 220px);
  overflow: hidden;
  border: 1px solid rgba(11,11,12,.10);
  border-radius: 12px;
}
.workSection__frame .slide__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  will-change: transform;
}

.workSection__frame .slide__img.is-zooming {
  animation: workSectionZoom 6s ease-out both;
}

@keyframes workSectionZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.workSection__content {
  position: absolute;
  bottom: 30px;
  left: 20vw;
  width: 60vw;
  z-index: 10;
}
.workSection__big {
  position: absolute;
  left: 5vw;
  bottom: 22px;
  width: 15vw;
  text-align: center;
  color: rgba(11,11,12,.98);
  margin-left: 0;
}
.workSection .workDetail {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.workSection .workDetail__row {
  width: 100%;
  margin: 0;
}
.workSection .workDetail__strong,
.workSection .workDetail__muted,
.workSection .workDetail__k,
.workSection .workDetail__v {
  color: rgba(11,11,12,.88);
}
.workSection .workDetail__k {
  color: rgba(11,11,12,.42);
}
.workSection .workDetail__muted {
  color: rgba(11,11,12,.55);
}
.theme-light .heroSlider__frame{
  border: 1px solid rgba(11,11,12,.10);
  border-radius: 12px;
}
.slider__slides{ position:absolute; inset:0; }
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.02);
}
.slide.is-active{ opacity:1; transform: scale(1); }
.slide__img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05);
}

/* placeholders: ganti ini jadi background-image: url('img/xxx.jpg') */
.slide__img--a{ 
  background-image: url('../images/1.webp');
}
.slide__img--b{ 
  background-image: url('../images/2.webp');
}
.slide__img--c{ 
  background-image: url('../images/3.webp');
}
.slide__img--d{ 
  background-image: url('../images/4.webp');
}
.slide__img--e{ 
  background-image: url('../images/5.webp');
}
.slide__img--f{ 
  background-image: url('../images/6.webp');
}
.indicator__count{ display:flex; gap:6px; font-weight:800; letter-spacing:.04em; }
.indicator__sep{ color:rgba(244,244,245,.45); font-weight:700; }
.indicator__fill{
  position:absolute;
  inset:0;
  width:0%;
  background: rgba(244,244,245,.85);
}

/* hero overlay UI (like screenshot 1) */
.heroUI{
  position:absolute;
  inset:0;
  z-index:5;
  pointer-events:none;
}
.heroUI a{ pointer-events:auto; }

.heroUI__see{
  position:absolute;
  top: 80px;
  left: 20vw;
  font-size: 11px;
  color: rgba(244,244,245,.55);
  letter-spacing: .06em;
  opacity: 0;
  transition: opacity 0.4s ease, color 0.3s ease;
  text-transform: uppercase;
}

.heroUI__mid{
  position:absolute;
  left: 5vw;
  right: 5vw;
  top: 52vh;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:18px;
  color: rgba(244,244,245,.92);
  transition: opacity 0.4s ease;
}
.heroUI__count{
  display:flex;
  gap:8px;
  align-items:baseline;
  font-weight:700;
}
.heroUI__line{
  position:relative;
  height:1px;
  background: rgba(244,244,245,.45);
  overflow:hidden;
}
.heroUI__line .indicator__fill{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:0%;
  background: rgba(244,244,245,.92);
}
.heroUI__label{ white-space:nowrap; color: rgba(244,244,245,.92); }
.heroUI__dot{ opacity:.7; }
.heroUI__cta{
  white-space:nowrap;
  color: rgba(244,244,245,.92);
  text-decoration:none;
  display: none;
}

.heroUI__bottom{
  position:absolute;
  left:0;
  right:0;
  bottom:22px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}
.heroUI__big{
  font-size: clamp(46px, 6.8vw, 115px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .85;
  color: rgba(244,244,245,.98);
  transition: color 0.3s ease;
  width: 15vw;
  margin-left: 5vw;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
}
.heroUI__down{
  width:42px;
  height:42px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(244,244,245,.35);
  color: rgba(244,244,245,.92);
  text-decoration:none;
  font-size:20px;
  transition: opacity 0.4s ease;
}

/* detail row (like screenshot 2) */
.workDetail{
  position:absolute;
  left:0;
  right:0;
  bottom: 15vh;
  opacity:0;
  transform: translateY(10px);
  pointer-events:none;
  z-index:4;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.workDetail__row{
  display:grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 32px;
  align-items:end;
  width: 60vw;
  margin-left: 20vw;
  margin-right: 20vw;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 980px){
  .workDetail{ bottom: 88px; }
  .workDetail__row{ grid-template-columns: 1fr; align-items:start; }
}
.workDetail__strong{ 
  font-weight:800; 
  letter-spacing:.01em; 
  padding-left: 0; 
  font-size: 15px; 
}
.workDetail__muted{ color: rgba(244,244,245,.70); }
.workDetail__mid{ display:grid; grid-template-columns: auto 1fr; column-gap:14px; row-gap:6px; }
.workDetail__k{ color: rgba(244,244,245,.50); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.workDetail__v{ font-weight:700; font-size: 14px; }
.workDetail__col{ padding: 0; }
.workDetail__right{ text-align:right; padding-right: 0; margin-right: 0; }
@media (max-width: 980px){
  .workDetail__right{ text-align:left; }
}

/* light-mode stage styling (like screenshot 2) */
.theme-light .stage{ background: var(--fg); }
.theme-light .heroUI__mid{ opacity:0; }
.theme-light .heroUI__big{ 
  color: rgba(11,11,12,.98);
}
.theme-light .heroUI__down{ opacity:0; }
.theme-light .heroUI__see{ opacity:1; color: rgba(11,11,12,.35); }
.theme-light .workDetail{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.theme-light .workDetail__muted{ color: rgba(11,11,12,.55); }
.theme-light .workDetail__k{ color: rgba(11,11,12,.42); }

/* legacy stack/list styles are no longer used by the reference layout */

/* stage main lines (kept as element in markup for easy layering) */
.mainLines{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(to right,
      transparent 0,
      transparent 5vw,
      var(--grid-current) 5vw,
      var(--grid-current) calc(5vw + 1px),
      transparent calc(5vw + 1px),
      transparent 20vw,
      var(--grid-current) 20vw,
      var(--grid-current) calc(20vw + 1px),
      transparent calc(20vw + 1px),
      transparent 80vw,
      var(--grid-current) 80vw,
      var(--grid-current) calc(80vw + 1px),
      transparent calc(80vw + 1px),
      transparent 95vw,
      var(--grid-current) 95vw,
      var(--grid-current) calc(95vw + 1px),
      transparent calc(95vw + 1px),
      transparent 100%
    );
}

/* marquee */
.marquee{
  border-bottom:1px solid var(--line);
  padding:18px 0;
  overflow:hidden;
}
.marquee__track{
  display:flex;
  gap:30px;
  white-space:nowrap;
  will-change: transform;
  color:rgba(244,244,245,.75);
  letter-spacing:.22em;
  font-weight:700;
  text-transform:uppercase;
  font-size:12px;
}
.marquee__track span{ padding:0 8px; }

/* about layout */
.two-col{
  display:grid;
  gap:24px;
  grid-template-columns: 1.2fr .8fr;
}
@media (max-width: 900px){
  .two-col{ grid-template-columns:1fr; }
}
.card{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:18px;
  padding:18px 18px;
}
.card .meta{ color:var(--muted); text-transform:uppercase; letter-spacing:.18em; font-size:12px; }
.card ul{ margin:12px 0 0; padding-left:18px; color:rgba(244,244,245,.85); }

/* pinned */
.pin-wrap{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.pin{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:90px 0;
}
.pin__big{
  width:min(1100px, 92vw);
  font-size: clamp(34px, 5vw, 72px);
  line-height:1.03;
  letter-spacing:-.03em;
  opacity:.92;
}

/* work grid */
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:18px; }
.work-grid{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}
@media (max-width: 900px){
  .work-grid{ grid-template-columns:1fr; }
}
.work-card{
  border:1px solid var(--line);
  background:rgba(244,244,245,.04);
  border-radius:18px;
  padding:16px;
}
.work-card h3{ margin:12px 0 6px; }
.work-card p{ margin:0; color:var(--muted); }
.thumb{
  height:220px;
  border-radius:14px;
  border:1px solid rgba(244,244,245,.10);
  background:
    radial-gradient(circle at 20% 20%, rgba(244,244,245,.18), transparent 55%),
    linear-gradient(135deg, rgba(244,244,245,.08), rgba(244,244,245,0));
}
.thumb.alt{
  background:
    radial-gradient(circle at 70% 30%, rgba(244,244,245,.18), transparent 55%),
    linear-gradient(135deg, rgba(244,244,245,.08), rgba(244,244,245,0));
}

/* reveal default state handled by GSAP */
.reveal{ will-change: transform, opacity; }
/* ===========================
   About Section - Split Layout
   =========================== */
.about-section {
  height: 100vh;
  max-height: 100vh;
  padding: 0;
  border: none;
  position: relative;
  overflow: hidden;
}

/* Mainlines for about section - visible on light background */
.mainLines--about {
  background: linear-gradient(to right,
    transparent 0,
    transparent 5vw,
    rgba(20, 20, 20, 0.10) 5vw,
    rgba(20, 20, 20, 0.10) calc(5vw + 1px),
    transparent calc(5vw + 1px),
    transparent 20vw,
    rgba(20, 20, 20, 0.10) 20vw,
    rgba(20, 20, 20, 0.10) calc(20vw + 1px),
    transparent calc(20vw + 1px),
    transparent 80vw,
    rgba(20, 20, 20, 0.10) 80vw,
    rgba(20, 20, 20, 0.10) calc(80vw + 1px),
    transparent calc(80vw + 1px),
    transparent 95vw,
    rgba(20, 20, 20, 0.10) 95vw,
    rgba(20, 20, 20, 0.10) calc(95vw + 1px),
    transparent calc(95vw + 1px),
    transparent 100%
  );
  z-index: 5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  position: relative;
  z-index: 2;
}

/* Left Section - Content */
.about-content {
  background: #e9e6e2; /* Beige/light cream */
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.about-content__inner {
  width: 100%;
  padding-left: 20vw;
  padding-right: 5vw;
}

.about-heading {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 400;
  color: #141414;
  margin: 0 0 25px;
  letter-spacing: 0.05em;
  text-align: left;
}

.about-text {
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.75;
  color: #141414;
  margin: 0 0 30px;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-left: -15vw;
}

.about-image {
  width: 100%;
  max-width: 280px;
  margin: 0;
  margin-left: -15vw;
  overflow: hidden;
  border-radius: 4px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1.5px solid #141414;
  border-radius: 50px;
  color: #141414;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.about-btn:hover {
  background: #141414;
  color: #e9e6e2;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(20, 20, 20, 0.15);
}

/* Right Section - Hero Image */
.about-hero {
  position: relative;
  overflow: hidden;
  background: #1a3a5c;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-hero {
    min-height: 60vh;
    order: -1; /* Image first on mobile */
  }
  
  .about-content {
    padding: 60px 30px;
  }
  
  .about-text {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .about-content__inner {
    max-width: 100%;
  }
  
  .about-content {
    padding: 50px 24px;
  }
  
  .about-heading {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .about-text {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 35px;
  }
  
  .about-image {
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .about-btn {
    padding: 12px 30px;
    font-size: 13px;
  }
}/* ===========================
   Journal Section
   =========================== */
.journal-section {
  background: #f8f7f5;
  padding: 120px 0 140px;
  position: relative;
}

.mainLines--journal {
  background: linear-gradient(to right,
    transparent 0,
    transparent 5vw,
    rgba(20, 20, 20, 0.08) 5vw,
    rgba(20, 20, 20, 0.08) calc(5vw + 1px),
    transparent calc(5vw + 1px),
    transparent 20vw,
    rgba(20, 20, 20, 0.08) 20vw,
    rgba(20, 20, 20, 0.08) calc(20vw + 1px),
    transparent calc(20vw + 1px),
    transparent 80vw,
    rgba(20, 20, 20, 0.08) 80vw,
    rgba(20, 20, 20, 0.08) calc(80vw + 1px),
    transparent calc(80vw + 1px),
    transparent 95vw,
    rgba(20, 20, 20, 0.08) 95vw,
    rgba(20, 20, 20, 0.08) calc(95vw + 1px),
    transparent calc(95vw + 1px),
    transparent 100%
  );
  z-index: 1;
}

.journal-container {
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
}

.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 60px;
  padding-left: 5vw;
  padding-right: 5vw;
}

.journal-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #141414;
  margin: 0;
  letter-spacing: -0.02em;
}

.journal-see-all {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #141414;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.3s ease;
  position: relative;
}

.journal-see-all::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #141414;
  transition: width 0.3s ease;
}

.journal-see-all:hover {
  opacity: 0.7;
}

.journal-see-all:hover::after {
  width: 100%;
}

.journal-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journal-item {
  display: grid;
  grid-template-columns: 5vw 15vw 60vw 1fr;
  grid-template-areas: "spacing-left date-col title-col image-col";
  gap: 0;
  padding: 40px 0;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
  align-items: center;
  transition: background 0.3s ease;
  cursor: pointer;
  padding-right: 5vw;
}

.journal-item:last-child {
  border-bottom: 1px solid rgba(20, 20, 20, 0.12);
}

.journal-item:hover {
  background: rgba(20, 20, 20, 0.02);
}

.journal-item__left {
  grid-area: date-col;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.journal-date {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #141414;
  letter-spacing: 0.02em;
}

.journal-category {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.03em;
}

.journal-item__center {
  grid-area: title-col;
  padding-right: 40px;
}

.journal-item__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #141414;
  line-height: 1.65;
  margin: 0;
  letter-spacing: 0.01em;
  transition: opacity 0.3s ease;
}

.journal-item:hover .journal-item__title {
  opacity: 0.7;
}

.journal-item__right {
  grid-area: image-col;
  width: 100%;
  max-width: 260px;
  height: 160px;
  overflow: hidden;
  border-radius: 4px;
  background: #e0e0e0;
  justify-self: end;
}

.journal-item__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.journal-item:hover .journal-item__right img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .journal-item {
    grid-template-columns: 5vw 20vw 1fr;
    grid-template-areas: "spacing-left date-col title-col" 
                         "spacing-left date-col image-col";
    row-gap: 20px;
  }
  
  .journal-item__right {
    max-width: 100%;
    height: 180px;
  }
  
  .journal-item__title {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .journal-section {
    padding: 80px 0 100px;
  }
  
  .journal-header {
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .journal-item {
    grid-template-columns: 20px 1fr;
    grid-template-areas: "spacing-left date-col" 
                         "spacing-left image-col"
                         "spacing-left title-col";
    row-gap: 15px;
    padding: 30px 20px 30px 0;
  }
  
  .journal-item__center {
    padding-right: 20px;
  }
  
  .journal-item__right {
    max-width: 100%;
    height: 200px;
  }
  
  .journal-item__title {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 640px) {
  .journal-title {
    font-size: 28px;
  }
  
  .journal-see-all {
    font-size: 13px;
  }
  
  .journal-item {
    padding: 25px 20px 25px 0;
  }
  
  .journal-date {
    font-size: 14px;
  }
  
  .journal-category {
    font-size: 11px;
  }
  
  .journal-item__title {
    font-size: 13px;
  }
}

/* ===========================
   Footer Section
   =========================== */
.footer-section {
  background: #e9e6e2;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.mainLines--footer {
  background: linear-gradient(to right,
    transparent 0,
    transparent 5vw,
    rgba(20, 20, 20, 0.08) 5vw,
    rgba(20, 20, 20, 0.08) calc(5vw + 1px),
    transparent calc(5vw + 1px),
    transparent 20vw,
    rgba(20, 20, 20, 0.08) 20vw,
    rgba(20, 20, 20, 0.08) calc(20vw + 1px),
    transparent calc(20vw + 1px),
    transparent 80vw,
    rgba(20, 20, 20, 0.08) 80vw,
    rgba(20, 20, 20, 0.08) calc(80vw + 1px),
    transparent calc(80vw + 1px),
    transparent 95vw,
    rgba(20, 20, 20, 0.08) 95vw,
    rgba(20, 20, 20, 0.08) calc(95vw + 1px),
    transparent calc(95vw + 1px),
    transparent 100%
  );
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 5vw 40vw 1fr 35vw 5vw;
  grid-template-rows: auto 1fr;
  grid-template-areas: 
    ". social . brand ."
    ". logo . info .";
  min-height: 400px;
  position: relative;
  z-index: 2;
  gap: 40px 0;
}

/* Social Links - Top Left */
.footer-social {
  grid-area: social;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.footer-social__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  position: relative;
}

.footer-social__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #888;
  transition: width 0.3s ease;
}

.footer-social__link:hover {
  color: #141414;
}

.footer-social__link:hover::after {
  width: 100%;
}

/* Large Logo - Bottom Left */
.footer-logo {
  grid-area: logo;
  align-self: end;
  overflow: hidden;
  padding-bottom: 20px;
}

.footer-logo__text {
  font-family: var(--font-head);
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 700;
  color: #141414;
  margin: 0;
  line-height: 0.85;
  letter-spacing: -0.04em;
  transform: translateY(15%);
}

/* Brand - Top Right */
.footer-brand {
  grid-area: brand;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-brand__inner {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.05em;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  color: #141414;
}

.footer-brand__logo svg {
  width: 50px;
  height: 16px;
}

.footer-brand__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #141414;
}

/* Info - Bottom Right */
.footer-info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: end;
  text-align: right;
  padding-bottom: 20px;
}

.footer-info__copyright {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.footer-info__address {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: #999;
  margin: 0;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.footer-info__privacy {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  margin-top: 8px;
  position: relative;
  display: inline-block;
  align-self: flex-end;
}

.footer-info__privacy::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #888;
  transition: width 0.3s ease;
}

.footer-info__privacy:hover {
  color: #141414;
}

.footer-info__privacy:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 5vw 1fr 5vw;
    grid-template-areas: 
      ". social ."
      ". brand ."
      ". logo ."
      ". info .";
    min-height: auto;
    gap: 30px 0;
    padding: 40px 0;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
  
  .footer-brand {
    justify-content: flex-start;
  }
  
  .footer-brand__inner {
    text-align: left;
    align-items: flex-start;
  }
  
  .footer-brand__logo {
    justify-content: flex-start;
  }
  
  .footer-logo__text {
    font-size: clamp(60px, 15vw, 120px);
  }
  
  .footer-info {
    text-align: left;
    align-items: flex-start;
  }
  
  .footer-info__privacy {
    align-self: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-section {
    padding: 60px 0 40px;
  }
  
  .footer-grid {
    gap: 25px 0;
  }
  
  .footer-social {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-social__link {
    font-size: 13px;
  }
  
  .footer-logo__text {
    font-size: clamp(50px, 18vw, 80px);
  }
  
  .footer-brand__label {
    font-size: 10px;
  }
  
  .footer-brand__name {
    font-size: 12px;
  }
  
  .footer-info__copyright {
    font-size: 11px;
  }
  
  .footer-info__address {
    font-size: 10px;
  }
  
  .footer-info__privacy {
    font-size: 10px;
  }
}
