:root {
  --ink: #080807;
  --muted: #6c665f;
  --stone: #eee9e1;
  --paper: #f8f5ef;
  --line: rgba(8, 8, 7, .16);
  --white: #fffdfa;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans KR", "Helvetica Neue", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.serif {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  align-items: center;
  gap: 28px;
  padding: 25px 58px;
  mix-blend-mode: difference;
  color: white;
}

.brand {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 29px;
  letter-spacing: .34em;
  line-height: .8;
}

.brand span {
  display: block;
  margin-top: 7px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 8px;
  letter-spacing: .48em;
}

.nav,
.utility {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.utility { justify-content: flex-end; gap: 25px; }

.page {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 40% 60%;
  background: linear-gradient(90deg, #f7f2ea 0 42%, #d9d0c4 42% 100%);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  padding: 135px 62px 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0;
  max-width: 500px;
  font-size: clamp(72px, 9vw, 142px);
  line-height: .78;
}

.hero-copy h1 em {
  font-size: .42em;
  font-style: italic;
  letter-spacing: -.06em;
}

.lead {
  max-width: 310px;
  margin: 36px 0 34px;
  color: #393631;
  font-size: 14px;
  line-height: 1.8;
}

.line-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.stamp {
  position: absolute;
  right: -56px;
  bottom: 115px;
  width: 86px;
  height: 86px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #5c554c;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  background: rgba(248, 245, 239, .58);
}

.hero-media {
  position: relative;
  min-height: 690px;
}

.hero-media img { object-position: center; }

.season-note {
  position: absolute;
  right: 62px;
  bottom: 92px;
  width: 170px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.8;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.hero-strip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(520px, 100%);
  height: 105px;
  background: #050505;
  color: white;
  display: grid;
  grid-template-columns: 120px 1fr 54px;
  align-items: center;
  gap: 22px;
  padding: 16px 34px 16px 62px;
}

.hero-strip img {
  aspect-ratio: 1.25;
  object-fit: cover;
}

.slide-index {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 10px;
  letter-spacing: .14em;
}

.slide-index::after {
  content: "";
  width: 86px;
  height: 1px;
  background: rgba(255, 255, 255, .72);
}

.slide-title {
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
}

.slide-title span {
  display: block;
  margin-top: 4px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
}

.circle-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.collection-grid {
  display: grid;
  grid-template-columns: 24% repeat(3, 16%) 28%;
  min-height: 320px;
  border-bottom: 1px solid var(--line);
}

.feature-copy,
.story-card {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.feature-copy h2,
.story-card h2,
.philosophy h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .88;
}

.feature-copy p,
.story-card p,
.philosophy p,
.page-hero p,
.text-block p {
  color: #514b45;
  line-height: 1.78;
  font-size: 14px;
}

.look-card {
  min-height: 320px;
  border-left: 1px solid var(--paper);
}

.story-card {
  position: relative;
  color: white;
  background: #030303;
  overflow: hidden;
}

.story-card img {
  position: absolute;
  inset: 0;
  opacity: .56;
}

.story-card > *:not(img) {
  position: relative;
  z-index: 1;
}

.story-card p { color: rgba(255, 255, 255, .76); }

.products {
  padding: 52px 58px 64px;
  background: #f4efe7;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 26px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-card {
  background: rgba(255, 255, 255, .36);
  padding: 12px 12px 18px;
}

.product-image {
  aspect-ratio: 1;
  background: var(--stone);
  margin-bottom: 15px;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.price {
  color: var(--muted);
  font-size: 12px;
}

.philosophy {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 360px;
  background: #e9e3da;
  border-top: 1px solid var(--line);
}

.philosophy .text {
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.philosophy .text h2 em { font-style: italic; }

.philosophy .media { min-height: 360px; }

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
  padding: 42px 58px;
  background: #0a0a09;
  color: white;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .56);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.7;
}

.page-hero {
  min-height: 430px;
  padding: 145px 58px 68px;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 44px;
  align-items: end;
  background: #eee8df;
  border-bottom: 1px solid var(--line);
}

.page-hero img {
  aspect-ratio: 16 / 7;
  min-height: 280px;
}

.editorial-layout,
.store-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.text-block {
  padding: 72px 58px;
  min-height: 350px;
}

.image-block {
  min-height: 350px;
}

.store-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.store-card {
  background: var(--paper);
  padding: 42px;
  min-height: 190px;
}

.store-card h3 { margin: 0 0 16px; font-family: "Cormorant Garamond", serif; font-size: 32px; }
.store-card p { margin: 0; color: var(--muted); line-height: 1.7; }

@media (max-width: 960px) {
  .topbar {
    position: absolute;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
    mix-blend-mode: normal;
    color: var(--ink);
    background: rgba(248, 245, 239, .84);
  }

  .nav,
  .utility {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero,
  .collection-grid,
  .philosophy,
  .page-hero,
  .editorial-layout,
  .store-layout {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 130px; }
  .hero-copy { padding: 70px 24px 40px; }
  .hero-media { min-height: 520px; }
  .stamp { display: none; }
  .hero-strip { position: static; width: 100%; padding: 14px 24px; }
  .collection-grid { display: block; }
  .look-card { height: 440px; }
  .feature-copy, .story-card, .text-block { padding: 44px 24px; }
  .story-card { min-height: 360px; }
  .products { padding: 42px 24px; }
  .product-row, .store-list { grid-template-columns: repeat(2, 1fr); }
  .footer { grid-template-columns: 1fr; padding: 36px 24px; }
  .page-hero { padding: 160px 24px 40px; }
}

@media (max-width: 560px) {
  .brand { font-size: 22px; }
  .nav { display: none; }
  .utility { font-size: 10px; }
  .hero-copy h1 { font-size: 72px; }
  .hero-media { min-height: 420px; }
  .season-note { right: 22px; bottom: 24px; }
  .hero-strip { grid-template-columns: 86px 1fr 38px; gap: 12px; }
  .product-row, .store-list { grid-template-columns: 1fr; }
  .section-head { display: block; }
}
