
:root{
  --paper:#f2ede3;
  --paper-2:#faf7f0;
  --ink:#251d18;
  --muted:#8d7f70;
  --line:#d9cebe;
  --bronze:#91663b;
  --bronze-mid:#a88459;
  --bronze-soft:#c9b79f;
  --white:#fffdf8;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family: "Noto Sans KR","Apple SD Gothic Neo","Malgun Gothic",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
button{font:inherit}
.site-header{
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(24px,5vw,76px);
  background:rgba(250,247,240,.97);
  border-bottom:1px solid rgba(37,29,24,.08);
  position:relative;
  z-index:20;
}
.brand{display:flex;align-items:center;gap:18px;min-width:0}
.brand img{display:block;width:min(270px,42vw);height:auto}
.brand-sub{
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:.32em;
  font-size:10px;
  color:#6f6256;
  white-space:nowrap;
}
.menu-toggle{
  width:42px;height:42px;border:0;background:transparent;display:grid;place-items:center;cursor:pointer;
}
.menu-toggle span,.menu-toggle span:before,.menu-toggle span:after{
  display:block;width:22px;height:1.5px;background:var(--ink);content:"";position:relative;
}
.menu-toggle span:before{position:absolute;top:-7px}
.menu-toggle span:after{position:absolute;top:7px}
.hero{
  min-height:40vh;
  height:clamp(360px,44vh,560px);
  position:relative;
  overflow:hidden;
  background:#2f261f;
}
.hero img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(18,13,10,.42),rgba(18,13,10,.08) 48%,rgba(18,13,10,.15));
}
.hero-label{
  position:absolute;left:clamp(28px,6vw,92px);top:38px;z-index:2;
  color:#fffdf8;
  font-family:Georgia,"Times New Roman",serif;
  font-size:13px;letter-spacing:.34em;
}
.home-hero img{object-position:50% 58%}
.class-hero img{object-position:50% 58%}

.home-menu{
  display:grid;
  grid-template-columns:repeat(7,minmax(100px,1fr));
  gap:0;
  padding:40px clamp(22px,5vw,76px) 32px;
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.home-menu a{
  text-align:center;padding:14px 8px 18px;
  border-right:1px solid rgba(145,102,59,.18);
  transition:.2s ease;
}
.home-menu a:last-child{border-right:none}
.home-menu a:hover{color:var(--bronze);transform:translateY(-2px)}
.menu-en{
  display:block;font-family:Georgia,"Times New Roman",serif;
  letter-spacing:.18em;font-size:12px;margin-bottom:8px;
}
.menu-ko{display:block;font-size:12px;color:var(--muted);letter-spacing:.03em}

.home-note{
  max-width:960px;margin:0 auto;padding:56px 28px 90px;text-align:center;
  color:#7d7064;font-family:Georgia,"Times New Roman",serif;font-size:14px;letter-spacing:.06em;
}

.class-intro{
  max-width:1240px;margin:0 auto;padding:46px clamp(24px,5vw,72px) 22px;
}
.section-kicker{
  margin:0 0 13px;font-family:Georgia,"Times New Roman",serif;
  letter-spacing:.32em;font-size:11px;color:var(--bronze);
}
.class-intro h1{
  margin:0 0 22px;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  font-size:clamp(36px,4vw,62px);
  line-height:1;
}
.class-one-line{
  margin:0;font-size:clamp(14px,1.35vw,18px);line-height:1.8;color:#6b5e52;
}

.course-flow-wrap{
  max-width:1320px;margin:0 auto;
  padding:28px clamp(20px,4vw,48px) 40px;
}
.course-flow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  overflow-x:auto;
  padding:14px 6px 18px;
  scrollbar-width:thin;
  scrollbar-color:var(--bronze-soft) transparent;
}
.course-card{
  flex:0 0 125px;
  border:0;background:transparent;padding:8px 4px 10px;cursor:pointer;color:var(--bronze-soft);
  display:flex;flex-direction:column;align-items:center;gap:9px;
  transition:.22s ease;
  position:relative;
}
.course-card:hover{color:var(--bronze-mid)}
.course-card.active{color:var(--bronze)}
.course-card.active::after{
  content:"";position:absolute;bottom:0;left:28%;right:28%;height:1.5px;background:currentColor;
}
.course-icon{
  width:92px;height:58px;display:block;object-fit:contain;
}
.course-icon *{
  vector-effect:non-scaling-stroke;
}
.course-name{
  font-size:13px;letter-spacing:.04em;color:inherit;white-space:nowrap;
}
.flow-arrow{
  flex:0 0 22px;
  color:var(--bronze-soft);
  font-family:Georgia,"Times New Roman",serif;
  font-size:19px;text-align:center;
  transform:translateY(-11px);
}
.course-content-shell{
  display:none;
  max-width:1180px;
  margin:0 auto 110px;
  padding:0 clamp(24px,5vw,70px);
}
.course-content-shell.open{
  display:block;
}
.course-content{
  display:none;
  background:var(--paper-2);
  border-top:1px solid var(--line);
  padding:54px clamp(4px,1vw,14px) 10px;
  animation:reveal .28s ease;
}
.course-content.visible{display:block}
@keyframes reveal{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.course-content-head{
  display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:34px;
}
.course-eyebrow{
  font-family:Georgia,"Times New Roman",serif;letter-spacing:.25em;font-size:11px;color:var(--bronze)
}
.course-content h2{
  margin:7px 0 0;font-family:Georgia,"Times New Roman",serif;font-weight:400;
  font-size:clamp(32px,4vw,54px);
}
.course-content .lead{max-width:720px;color:#6d6156;line-height:1.85;margin:0}
.editorial{
  display:grid;grid-template-columns:1.2fr .8fr;gap:30px;align-items:start;
}
.editorial img{width:100%;display:block;aspect-ratio:4/3;object-fit:cover}
.editorial-copy{
  padding:10px 0 0;
  color:#66594d;line-height:1.9;font-size:15px;
}
.editorial-copy h3{
  color:var(--ink);font-family:Georgia,"Times New Roman",serif;
  font-weight:400;font-size:27px;margin:0 0 14px;
}
.student-btn{
  margin-top:32px;display:inline-flex;align-items:center;gap:12px;
  border:1px solid var(--bronze);color:var(--bronze);
  padding:12px 17px;background:transparent;cursor:pointer;font-size:13px;letter-spacing:.04em;
  transition:.2s ease;
}
.student-btn:hover{background:var(--bronze);color:var(--white)}
.placeholder-note{
  display:none;
}
.site-footer{
  border-top:1px solid var(--line);
  padding:34px clamp(24px,5vw,76px) 42px;
  display:flex;justify-content:space-between;gap:20px;align-items:center;
  font-size:11px;color:#85776a;letter-spacing:.08em;
}
.footer-word{font-family:Georgia,"Times New Roman",serif;letter-spacing:.2em;color:#4f4339}
.back-home{
  position:fixed;right:24px;bottom:22px;z-index:10;
  width:46px;height:46px;border-radius:50%;border:1px solid rgba(145,102,59,.45);
  background:rgba(250,247,240,.92);display:grid;place-items:center;color:var(--bronze);
  font-size:18px;box-shadow:0 6px 18px rgba(45,31,20,.08);
}

/* v0.4: compact sticky course navigator shown only after a course is opened */
.sticky-course-nav{
  position:sticky;
  top:0;
  z-index:18;
  display:none;
  background:rgba(242,237,227,.96);
  backdrop-filter:blur(10px);
  border-top:1px solid rgba(145,102,59,.16);
  border-bottom:1px solid rgba(145,102,59,.22);
  box-shadow:0 8px 20px rgba(37,29,24,.045);
}
.sticky-course-nav.visible{display:block}
.sticky-course-inner{
  max-width:1240px;
  margin:0 auto;
  padding:0 clamp(18px,4vw,54px);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  overflow-x:auto;
  scrollbar-width:none;
}
.sticky-course-inner::-webkit-scrollbar{display:none}
.sticky-course-btn{
  flex:0 0 auto;
  border:0;
  background:transparent;
  color:#a99784;
  padding:15px clamp(10px,1.4vw,18px) 13px;
  cursor:pointer;
  font-size:12px;
  letter-spacing:.035em;
  position:relative;
  white-space:nowrap;
}
.sticky-course-btn:hover{color:var(--bronze-mid)}
.sticky-course-btn.active{color:var(--bronze);font-weight:600}
.sticky-course-btn.active::after{
  content:"";
  position:absolute;
  left:24%;
  right:24%;
  bottom:7px;
  height:1px;
  background:currentColor;
}
.sticky-divider{
  color:#cdbda9;
  font-size:11px;
  flex:0 0 auto;
}

/* bottom previous / next course navigation */
.course-bottom-nav{
  margin-top:58px;
  padding-top:24px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
}
.course-prev,
.course-next{
  border:0;
  background:transparent;
  color:var(--bronze);
  cursor:pointer;
  padding:8px 0;
  font-size:13px;
  letter-spacing:.035em;
}
.course-prev[disabled],
.course-next[disabled]{
  visibility:hidden;
}
.course-prev{text-align:left}
.course-next{text-align:right;margin-left:auto}

@media(max-width:960px){
  .brand-sub{display:none}
  .home-menu{grid-template-columns:repeat(4,1fr)}
  .home-menu a:nth-child(4){border-right:none}
  .home-menu a{border-bottom:1px solid rgba(145,102,59,.10)}
  .editorial{grid-template-columns:1fr}
}
@media(max-width:620px){

  .sticky-course-inner{justify-content:flex-start;padding:0 10px}
  .sticky-course-btn{padding-left:11px;padding-right:11px;font-size:11px}
  .course-bottom-nav{margin-top:42px}

  .site-header{height:72px;padding:0 18px}
  .brand img{width:210px}
  .hero{height:39vh;min-height:300px}
  .hero-label{left:22px;top:25px}
  .home-menu{grid-template-columns:repeat(2,1fr);padding:25px 18px 24px}
  .home-menu a{border-right:1px solid rgba(145,102,59,.16)}
  .home-menu a:nth-child(even){border-right:none}
  .class-intro{padding-top:36px}
  .class-intro h1{font-size:38px}
  .course-flow{justify-content:flex-start;gap:4px}
  .course-card{flex-basis:106px}
  .course-icon{width:78px;height:50px}
  .flow-arrow{flex-basis:16px}
  .course-content-shell{padding:0 20px}
  .course-content{padding-top:38px}
  .course-content-head{display:block}
  .course-content .lead{margin-top:16px}
  .site-footer{display:block;line-height:1.8}
}

/* BESPOKE v0.5 */
.bespoke-intro{max-width:1240px;margin:0 auto;padding:46px clamp(24px,5vw,72px) 22px}
.bespoke-intro h1{margin:0 0 22px;font-family:Georgia,"Times New Roman",serif;font-weight:400;font-size:clamp(36px,4vw,62px);line-height:1}
.bespoke-one-line{margin:0;font-size:clamp(14px,1.35vw,18px);line-height:1.8;color:#6b5e52}
.bespoke-flow-wrap{max-width:1240px;margin:0 auto;padding:28px clamp(22px,5vw,72px) 18px}
.bespoke-flow{display:grid;grid-template-columns:1fr 42px 1fr 42px 1fr;align-items:center;gap:12px}
.bespoke-step{border:0;background:transparent;padding:0;cursor:pointer;text-align:left;color:var(--ink)}
.bespoke-step-image{position:relative;aspect-ratio:4/3;overflow:hidden;background:#cfc5b7;border:1px solid rgba(145,102,59,.16);display:block}
.bespoke-step-image img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(.82) contrast(.96) brightness(.94);transition:.35s ease}
.bespoke-step-image::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(22,16,12,.02),rgba(22,16,12,.18))}
.bespoke-step:hover img{transform:scale(1.018)}
.bespoke-step.active .bespoke-step-image{outline:1.5px solid var(--bronze);outline-offset:4px}
.bespoke-step-no{display:block;margin-top:18px;font-family:Georgia,"Times New Roman",serif;font-size:10px;letter-spacing:.24em;color:var(--bronze)}
.bespoke-step-title{display:block;margin-top:6px;font-size:15px}
.bespoke-arrow{text-align:center;color:var(--bronze-soft);font-family:Georgia,"Times New Roman",serif;font-size:22px;transform:translateY(-18px)}
.bespoke-sticky-nav{position:sticky;top:0;z-index:18;display:none;background:rgba(242,237,227,.96);backdrop-filter:blur(10px);border-top:1px solid rgba(145,102,59,.16);border-bottom:1px solid rgba(145,102,59,.22)}
.bespoke-sticky-nav.visible{display:block}
.bespoke-sticky-inner{max-width:1000px;margin:0 auto;display:flex;justify-content:center;align-items:center;gap:4px;overflow-x:auto;padding:0 16px}
.bespoke-sticky-btn{border:0;background:transparent;padding:15px 17px 13px;color:#a99784;cursor:pointer;white-space:nowrap;font-size:12px}
.bespoke-sticky-btn.active{color:var(--bronze);font-weight:600}
.bespoke-sticky-sep{color:#cdbda9;font-size:11px}
.bespoke-content-shell{display:none;max-width:1180px;margin:0 auto 56px;padding:0 clamp(24px,5vw,70px)}
.bespoke-content-shell.open{display:block}
.bespoke-content{background:var(--paper-2);border-top:1px solid var(--line);padding:52px clamp(4px,1vw,14px) 10px}
.bespoke-content-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:34px}
.bespoke-content h2{margin:7px 0 0;font-family:Georgia,"Times New Roman",serif;font-weight:400;font-size:clamp(32px,4vw,54px)}
.bespoke-lead{max-width:720px;color:#6d6156;line-height:1.85;margin:0}
.bespoke-body{display:grid;grid-template-columns:1.15fr .85fr;gap:30px}
.bespoke-body img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.bespoke-body-copy{padding-top:8px;line-height:1.9;color:#66594d;font-size:15px}
.bespoke-body-copy h3{margin:0 0 14px;color:var(--ink);font-family:Georgia,"Times New Roman",serif;font-weight:400;font-size:27px}
.bespoke-bottom-nav{margin-top:58px;padding-top:24px;border-top:1px solid var(--line);display:flex;justify-content:space-between}
.bespoke-prev,.bespoke-next{border:0;background:transparent;color:var(--bronze);cursor:pointer;padding:8px 0;font-size:13px}
.bespoke-prev[disabled],.bespoke-next[disabled]{visibility:hidden}
.bespoke-next{margin-left:auto}
.bespoke-gallery{max-width:1240px;margin:32px auto 110px;padding:0 clamp(22px,5vw,72px)}
.gallery-entry{position:relative;min-height:360px;overflow:hidden;display:block;background:#251d18}
.gallery-entry img{width:100%;height:100%;min-height:360px;object-fit:cover;display:block;filter:brightness(.55) saturate(.78);transition:.4s ease}
.gallery-entry:hover img{transform:scale(1.012);filter:brightness(.62) saturate(.84)}
.gallery-overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:clamp(28px,5vw,58px);color:#fffaf2;background:linear-gradient(180deg,transparent 22%,rgba(15,10,8,.65))}
.gallery-kicker{margin:0 0 9px;font-size:10px;letter-spacing:.28em;color:#d7c2aa}
.gallery-title{margin:0;font-family:Georgia,"Times New Roman",serif;font-size:clamp(34px,5vw,66px);font-weight:400}
.gallery-link{margin-top:14px;font-size:13px;color:#e7dacb}
@media(max-width:820px){.bespoke-flow{grid-template-columns:1fr;gap:14px}.bespoke-arrow{transform:none;font-size:0}.bespoke-arrow::before{content:"↓";font-size:18px}.bespoke-body{grid-template-columns:1fr}}
@media(max-width:620px){.bespoke-intro{padding-top:36px}.bespoke-intro h1{font-size:38px}.bespoke-sticky-inner{justify-content:flex-start}.bespoke-sticky-btn{padding-left:11px;padding-right:11px;font-size:11px}.gallery-entry,.gallery-entry img{min-height:300px}}

/* ===== v0.6 COMMON: entry screen / detail screen split ===== */
html,body{min-height:100%}
body.entry-page{
  height:100vh;
  min-height:680px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.entry-page .site-header{flex:0 0 82px}
.entry-hero{
  flex:0 0 30vh;
  min-height:220px;
  max-height:350px;
  position:relative;
  overflow:hidden;
  background:#2f261f;
}
.entry-hero img{width:100%;height:100%;object-fit:cover;display:block}
.entry-hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(18,13,10,.38),rgba(18,13,10,.05) 55%,rgba(18,13,10,.10));
}
.entry-hero .hero-label{
  left:clamp(26px,6vw,92px);
  top:30px;
}
.entry-stage{
  flex:1 1 auto;
  min-height:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:1320px;
  width:100%;
  margin:0 auto;
  padding:22px clamp(20px,4.8vw,68px) 26px;
}
.entry-kicker{
  margin:0 0 8px;
  color:var(--bronze);
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:.28em;
  font-size:10px;
}
.entry-line{
  margin:0 0 23px;
  color:#675c52;
  font-size:clamp(13px,1.2vw,17px);
  line-height:1.55;
}
.entry-hint{
  margin:12px 0 0;
  text-align:center;
  font-size:10px;
  color:#aa9b8b;
  letter-spacing:.04em;
}
.detail-page{background:var(--paper)}
.detail-topbar{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(242,237,227,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(145,102,59,.22);
}
.detail-topbar-inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 clamp(16px,3.4vw,48px);
  display:flex;
  align-items:center;
  overflow-x:auto;
  scrollbar-width:none;
}
.detail-topbar-inner::-webkit-scrollbar{display:none}
.detail-back{
  flex:0 0 auto;
  border:0;
  background:transparent;
  color:var(--ink);
  font-size:12px;
  padding:14px 18px 14px 0;
  margin-right:8px;
  cursor:pointer;
  white-space:nowrap;
}
.detail-nav-item{
  flex:0 0 auto;
  border:0;
  background:transparent;
  padding:14px 13px 12px;
  color:#a39280;
  font-size:11px;
  cursor:pointer;
  white-space:nowrap;
  position:relative;
}
.detail-nav-item.active{color:var(--bronze);font-weight:600}
.detail-nav-item.active::after{
  content:"";position:absolute;left:26%;right:26%;bottom:6px;height:1px;background:currentColor;
}
.detail-sep{color:#cdbda9;font-size:10px}
.detail-main{
  max-width:1120px;
  margin:0 auto;
  padding:52px clamp(22px,5vw,70px) 100px;
}
.detail-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:32px;
  margin-bottom:42px;
}
.detail-eyebrow{
  color:var(--bronze);
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:.25em;
  font-size:10px;
}
.detail-heading h1{
  margin:7px 0 0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(40px,5vw,66px);
  font-weight:400;
}
.detail-lead{
  max-width:620px;
  margin:0;
  color:#6d6156;
  line-height:1.8;
  font-size:15px;
}
.article-block{
  margin:0 0 56px;
}
.article-block img{
  width:100%;
  display:block;
  max-height:620px;
  object-fit:cover;
}
.article-block.split{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:32px;
  align-items:start;
}
.article-copy{
  color:#66594d;
  line-height:1.9;
  font-size:15px;
}
.article-copy h2,.article-copy h3{
  color:var(--ink);
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
}
.article-copy h2{font-size:30px;margin:0 0 16px}
.article-copy h3{font-size:24px;margin:0 0 12px}
.student-works-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  border:1px solid var(--bronze);
  color:var(--bronze);
  padding:12px 17px;
  font-size:13px;
}
.detail-bottom-nav{
  border-top:1px solid var(--line);
  padding-top:24px;
  margin-top:68px;
  display:flex;
  justify-content:space-between;
  gap:22px;
}
.detail-bottom-nav a{
  color:var(--bronze);
  font-size:13px;
}
.detail-bottom-nav .disabled{visibility:hidden}

/* CLASS ENTRY */
.class-entry-flow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:5px;
  overflow-x:auto;
  scrollbar-width:none;
  padding:8px 0 6px;
}
.class-entry-flow::-webkit-scrollbar{display:none}
.class-entry-card{
  flex:0 0 112px;
  color:var(--bronze-soft);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:7px;
  transition:.18s ease;
}
.class-entry-card:hover{color:var(--bronze)}
.class-entry-card .course-icon{width:84px;height:52px}
.class-entry-card .course-name{font-size:12px}
.class-entry-arrow{
  flex:0 0 18px;
  color:var(--bronze-soft);
  font-family:Georgia,"Times New Roman",serif;
  text-align:center;
  font-size:18px;
  transform:translateY(-10px);
}

/* BESPOKE ENTRY: 3 process cards + visually separate gallery card */
.bespoke-entry-grid{
  display:grid;
  grid-template-columns:1fr 24px 1fr 24px 1fr 1.12fr;
  gap:12px;
  align-items:stretch;
}
.bespoke-entry-card{
  min-width:0;
  display:flex;
  flex-direction:column;
}
.bespoke-entry-photo{
  position:relative;
  aspect-ratio:1.55/1;
  min-height:120px;
  overflow:hidden;
  border:1px solid rgba(145,102,59,.14);
  background:#d1c7b9;
}
.bespoke-entry-photo img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(.82) brightness(.93)}
.bespoke-entry-no{
  margin-top:11px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:9px;
  letter-spacing:.22em;
  color:var(--bronze);
}
.bespoke-entry-title{
  margin-top:4px;
  font-size:13px;
  color:var(--ink);
}
.bespoke-entry-arrow{
  display:grid;
  place-items:center;
  color:var(--bronze-soft);
  font-size:18px;
  transform:translateY(-13px);
}
.bespoke-gallery-entry{
  position:relative;
  overflow:hidden;
  min-height:100%;
  background:#241d18;
  margin-left:8px;
}
.bespoke-gallery-entry img{
  width:100%;height:100%;object-fit:cover;display:block;filter:brightness(.48) saturate(.74);
}
.bespoke-gallery-entry::after{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(10,8,6,.03),rgba(10,8,6,.62));
}
.bespoke-gallery-entry-copy{
  position:absolute;z-index:2;left:20px;right:18px;bottom:18px;color:#fffaf2;
}
.bespoke-gallery-entry-copy small{
  display:block;margin-bottom:6px;color:#d6c2aa;font-size:9px;letter-spacing:.24em;
}
.bespoke-gallery-entry-copy strong{
  display:block;font-family:Georgia,"Times New Roman",serif;font-weight:400;font-size:clamp(20px,2vw,32px);
}
.bespoke-gallery-entry-copy span{
  display:block;margin-top:7px;color:#e6d8c8;font-size:11px;
}

.gallery-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.gallery-detail-grid figure{margin:0}
.gallery-detail-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.gallery-detail-grid figcaption{padding-top:9px;color:#817467;font-size:12px}

@media(max-width:900px){
  body.entry-page{min-height:620px}
  .entry-page .site-header{flex-basis:72px}
  .entry-hero{flex-basis:28vh;min-height:190px}
  .class-entry-card{flex-basis:98px}
  .class-entry-card .course-icon{width:72px;height:46px}
  .bespoke-entry-grid{grid-template-columns:1fr 18px 1fr 18px 1fr 1.05fr;gap:8px}
  .bespoke-gallery-entry{margin-left:2px}
  .detail-heading{display:block}
  .detail-lead{margin-top:18px}
}
@media(max-width:700px){
  body.entry-page{min-height:640px}
  .entry-hero{flex-basis:26vh}
  .entry-stage{justify-content:flex-start;padding-top:20px}
  .entry-line{margin-bottom:16px}
  .class-entry-flow{justify-content:flex-start}
  .bespoke-entry-grid{
    grid-template-columns:1fr 1fr;
    grid-template-areas:
      "one two"
      "three gallery";
    gap:10px;
  }
  .bespoke-entry-card:nth-child(1){grid-area:one}
  .bespoke-entry-card:nth-child(3){grid-area:two}
  .bespoke-entry-card:nth-child(5){grid-area:three}
  .bespoke-entry-arrow{display:none}
  .bespoke-gallery-entry{grid-area:gallery;margin-left:0}
  .bespoke-entry-photo{min-height:86px}
  .bespoke-entry-no{margin-top:6px}
  .bespoke-entry-title{font-size:12px}
  .bespoke-gallery-entry-copy{left:13px;bottom:12px}
  .bespoke-gallery-entry-copy strong{font-size:19px}
  .article-block.split{grid-template-columns:1fr}
  .gallery-detail-grid{grid-template-columns:1fr}
}

/* ===== CLASS ENTRY v0.7 refinement ===== */
body.class-entry-v07{
  height:100vh;
  min-height:690px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.class-entry-v07 .site-header{
  flex:0 0 78px;
}
.class-entry-v07 .class-cover{
  flex:0 0 35vh;
  min-height:240px;
  max-height:390px;
  position:relative;
  overflow:hidden;
  background:#241c17;
}
.class-entry-v07 .class-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.9) contrast(.98) brightness(.9);
}
.class-entry-v07 .class-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(15,11,8,.10),rgba(15,11,8,.20)),
    linear-gradient(90deg,rgba(16,12,9,.08),rgba(16,12,9,.02) 45%,rgba(16,12,9,.08));
}
.class-cover-title{
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  margin:0;
  color:#fffaf1;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(28px,3.2vw,46px);
  font-weight:400;
  letter-spacing:.24em;
  text-shadow:0 1px 12px rgba(0,0,0,.16);
}
.class-entry-v07 .class-entry-content{
  flex:1 1 auto;
  min-height:0;
  max-width:1320px;
  width:100%;
  margin:0 auto;
  padding:24px clamp(24px,4.6vw,68px) 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.class-entry-v07 .class-optional-copy{
  margin:34px 0 56px;
  text-align:center;
  color:#6b6056;
  font-size:clamp(12px,1.05vw,15px);
  line-height:1.55;
}
.class-entry-v07 .class-optional-copy:empty{
  display:none;
  margin:0;
}
.class-entry-v07 .class-entry-flow{
  display:grid;
  grid-template-columns:repeat(13,minmax(0,1fr));
  gap:0;
  align-items:center;
  width:100%;
  overflow:visible;
  padding:8px 0 2px;
}
.class-entry-v07 .class-entry-card{
  min-width:0;
  width:100%;
  color:#b9a894;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
  transition:.22s ease;
}
.class-entry-v07 .class-entry-card:hover{
  color:var(--bronze);
  transform:translateY(-2px);
}
.class-entry-v07 .class-entry-card .course-icon{
  width:min(92px,7vw);
  height:min(58px,4.6vw);
  min-width:66px;
  min-height:42px;
}
.class-entry-v07 .class-entry-card .course-name{
  font-size:11px;
  letter-spacing:.01em;
  white-space:nowrap;
}
.class-entry-v07 .class-entry-arrow{
  color:#c6b6a3;
  font-family:Georgia,"Times New Roman",serif;
  text-align:center;
  font-size:17px;
  transform:translateY(-10px);
}
.class-entry-v07 .class-entry-foot{
  margin:18px 0 0;
  text-align:center;
  color:#b4a695;
  font-size:9px;
  letter-spacing:.06em;
}
.class-entry-v07 .class-entry-foot:empty{display:none}

@media(max-width:900px){
  body.class-entry-v07{min-height:650px}
  .class-entry-v07 .site-header{flex-basis:70px}
  .class-entry-v07 .class-cover{flex-basis:31vh;min-height:205px}
  .class-entry-v07 .class-entry-content{padding-top:18px;padding-bottom:16px}
  .class-entry-v07 .class-optional-copy{margin-top:22px;margin-bottom:26px}
  .class-entry-v07 .class-entry-card .course-icon{min-width:58px;min-height:36px}
  .class-entry-v07 .class-entry-card .course-name{font-size:10px}
}
@media(max-width:700px){
  body.class-entry-v07{height:auto;min-height:100vh;overflow:auto}
  .class-entry-v07 .class-cover{height:250px;flex:none}
  .class-entry-v07 .class-entry-content{min-height:calc(100vh - 320px);justify-content:flex-start}
  .class-entry-v07 .class-entry-flow{
    grid-template-columns:repeat(7,minmax(82px,1fr));
    gap:12px;
    overflow-x:auto;
    scrollbar-width:none;
    padding-bottom:8px;
  }
  .class-entry-v07 .class-entry-flow::-webkit-scrollbar{display:none}
  .class-entry-v07 .class-entry-arrow{display:none}
  .class-entry-v07 .class-entry-card .course-icon{
    width:74px;height:46px;min-width:74px;min-height:46px;
  }
}

/* ===== CLASS ENTRY v0.8 : restore process arrows ===== */
.class-entry-v07 .class-entry-flow{
  grid-template-columns:
    minmax(82px,1fr) 34px
    minmax(82px,1fr) 34px
    minmax(82px,1fr) 34px
    minmax(82px,1fr) 34px
    minmax(82px,1fr) 34px
    minmax(82px,1fr) 34px
    minmax(82px,1fr);
  column-gap:6px;
}
.class-entry-v07 .class-entry-arrow{
  display:block !important;
  align-self:center;
  justify-self:center;
  width:34px;
  color:#9d7957;
  opacity:.82;
  font-family:Georgia,"Times New Roman",serif;
  font-size:21px;
  line-height:1;
  text-align:center;
  transform:translateY(-12px);
  pointer-events:none;
}
@media(max-width:900px){
  .class-entry-v07 .class-entry-flow{
    grid-template-columns:
      minmax(70px,1fr) 24px
      minmax(70px,1fr) 24px
      minmax(70px,1fr) 24px
      minmax(70px,1fr) 24px
      minmax(70px,1fr) 24px
      minmax(70px,1fr) 24px
      minmax(70px,1fr);
    column-gap:2px;
  }
  .class-entry-v07 .class-entry-arrow{
    width:24px;
    font-size:18px;
  }
}
@media(max-width:700px){
  .class-entry-v07 .class-entry-flow{
    grid-template-columns:repeat(13,auto);
    gap:8px;
    overflow-x:auto;
  }
  .class-entry-v07 .class-entry-arrow{
    display:block !important;
    width:18px;
    font-size:16px;
    transform:translateY(-10px);
  }
}

/* ===== v0.9 HOME entry screen ===== */
body.home-entry-v09{
  height:100vh;
  min-height:680px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.home-entry-v09 .site-header{
  flex:0 0 78px;
}
.home-entry-v09 .home-cover{
  flex:1 1 auto;
  min-height:0;
  position:relative;
  overflow:hidden;
  background:#241c17;
}
.home-entry-v09 .home-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 58%;
  display:block;
  filter:saturate(.92) contrast(.99) brightness(.92);
}
.home-entry-v09 .home-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(18,13,10,.04),rgba(18,13,10,.10)),
    linear-gradient(90deg,rgba(18,13,10,.04),rgba(18,13,10,.01) 50%,rgba(18,13,10,.04));
  pointer-events:none;
}
.home-entry-v09 .home-menu-v09{
  flex:0 0 136px;
  max-width:1360px;
  width:100%;
  margin:0 auto;
  padding:0 clamp(22px,4.4vw,64px);
  display:grid;
  grid-template-columns:repeat(7,1fr);
  align-items:stretch;
  background:var(--paper);
}
.home-entry-v09 .home-menu-v09 a{
  position:relative;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  color:var(--ink);
  border-right:1px solid rgba(145,102,59,.13);
  transition:.2s ease;
}
.home-entry-v09 .home-menu-v09 a:first-child{
  border-left:1px solid rgba(145,102,59,.13);
}
.home-entry-v09 .home-menu-v09 a:hover{
  color:var(--bronze);
  transform:translateY(-2px);
}
.home-entry-v09 .home-menu-v09 .menu-en{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(12px,1.15vw,16px);
  font-weight:400;
  letter-spacing:.09em;
}
.home-entry-v09 .home-menu-v09 .menu-ko{
  font-size:10px;
  color:#9b8d7e;
  letter-spacing:.02em;
}
.home-entry-v09 .home-bottom-line{
  flex:0 0 18px;
  border-top:1px solid rgba(145,102,59,.08);
}

/* section title over photos: shared quiet opacity */
.class-cover-title,
.entry-hero .hero-label{
  opacity:.85;
}

@media(max-width:900px){
  body.home-entry-v09{min-height:640px}
  .home-entry-v09 .site-header{flex-basis:70px}
  .home-entry-v09 .home-menu-v09{flex-basis:126px;padding-left:16px;padding-right:16px}
  .home-entry-v09 .home-menu-v09 .menu-en{font-size:11px}
  .home-entry-v09 .home-menu-v09 .menu-ko{font-size:9px}
}
@media(max-width:700px){
  body.home-entry-v09{
    height:100vh;
    min-height:620px;
    overflow:hidden;
  }
  .home-entry-v09 .home-cover{
    min-height:0;
  }
  .home-entry-v09 .home-menu-v09{
    flex-basis:164px;
    grid-template-columns:repeat(4,1fr);
    grid-template-rows:repeat(2,1fr);
    padding:0 12px;
  }
  .home-entry-v09 .home-menu-v09 a{
    border-right:1px solid rgba(145,102,59,.13);
    border-bottom:1px solid rgba(145,102,59,.10);
  }
  .home-entry-v09 .home-menu-v09 a:nth-child(4){
    border-right:none;
  }
  .home-entry-v09 .home-menu-v09 a:nth-child(n+5){
    border-bottom:none;
  }
  .home-entry-v09 .home-menu-v09 a:first-child{
    border-left:none;
  }
}

/* ===== CONTENTS v1.0 ===== */
body.contents-entry-v10{
  height:100vh;
  min-height:680px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.contents-entry-v10 .site-header{flex:0 0 78px}
.contents-cover{
  flex:0 0 31vh;
  min-height:220px;
  max-height:350px;
  position:relative;
  overflow:hidden;
  background:#251d18;
}
.contents-cover img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  filter:saturate(.88) contrast(.98) brightness(.88);
}
.contents-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(13,10,8,.06),rgba(13,10,8,.2));
}
.contents-cover-title{
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  margin:0;
  color:rgba(255,250,241,.85);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(27px,3vw,43px);
  font-weight:400;
  letter-spacing:.22em;
}
.contents-stage{
  flex:1 1 auto;
  min-height:0;
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:24px clamp(24px,5vw,70px) 22px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.contents-optional-copy{
  margin:0 0 20px;
  text-align:center;
  color:#6d6258;
  font-size:13px;
  line-height:1.55;
}
.contents-optional-copy:empty{display:none;margin:0}
.contents-category-row{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  margin-bottom:22px;
}
.contents-cat{
  border:1px solid rgba(145,102,59,.15);
  border-radius:14px;
  padding:18px 12px 16px;
  text-align:center;
  background:rgba(255,255,255,.15);
  color:var(--ink);
  transition:.2s ease;
}
.contents-cat:hover{
  border-color:rgba(145,102,59,.4);
  color:var(--bronze);
  transform:translateY(-2px);
}
.contents-cat strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  font-size:16px;
  letter-spacing:.08em;
}
.contents-cat span{
  display:block;
  margin-top:5px;
  color:#9b8d7e;
  font-size:9px;
}
.contents-search-box{
  display:flex;
  max-width:700px;
  width:100%;
  margin:0 auto;
  border-bottom:1px solid #a99075;
  align-items:center;
  gap:10px;
  padding:0 2px 9px;
}
.contents-search-box input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  font-size:14px;
  color:var(--ink);
  font-family:inherit;
}
.contents-search-box input::placeholder{color:#aa9c8d}
.contents-search-box button{
  border:0;
  background:transparent;
  color:var(--bronze);
  cursor:pointer;
  font-size:17px;
  padding:4px 2px;
}
.contents-search-note{
  margin:9px 0 0;
  text-align:center;
  color:#b0a293;
  font-size:9px;
}

/* list / search result screen */
.contents-list-page,
.contents-article-page{
  background:var(--paper);
  min-height:100vh;
}
.contents-list-main,
.contents-article-main{
  max-width:1000px;
  margin:0 auto;
  padding:50px clamp(22px,5vw,64px) 100px;
}
.contents-list-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:28px;
  margin-bottom:32px;
}
.contents-list-head h1{
  margin:6px 0 0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(36px,4.6vw,58px);
  font-weight:400;
}
.contents-list-sub{
  margin:0;
  max-width:440px;
  color:#807265;
  font-size:13px;
  line-height:1.7;
}
.contents-list-search{
  margin:0 0 34px;
  display:flex;
  border-bottom:1px solid rgba(145,102,59,.35);
  padding-bottom:8px;
}
.contents-list-search input{
  flex:1;border:0;outline:0;background:transparent;font-family:inherit;font-size:13px;color:var(--ink)
}
.contents-list-search button{
  border:0;background:transparent;color:var(--bronze);cursor:pointer;font-size:16px
}
.contents-results-meta{
  margin:0 0 10px;
  color:#a09283;
  font-size:10px;
  letter-spacing:.06em;
}
.contents-title-list{
  border-top:1px solid var(--line);
}
.contents-title-row{
  display:grid;
  grid-template-columns:90px 1fr 24px;
  gap:18px;
  align-items:center;
  padding:21px 0;
  border-bottom:1px solid var(--line);
}
.contents-title-row .cat{
  color:#9b846d;
  font-family:Georgia,"Times New Roman",serif;
  font-size:10px;
  letter-spacing:.12em;
}
.contents-title-row .title{
  color:var(--ink);
  font-size:15px;
  line-height:1.5;
}
.contents-title-row .arrow{
  color:#ae9a84;
  text-align:right;
}
.contents-title-row:hover .title,
.contents-title-row:hover .arrow{color:var(--bronze)}
.contents-empty{
  padding:36px 0;
  color:#958778;
  font-size:13px;
  border-top:1px solid var(--line);
}

/* sticky category bar */
.contents-sticky{
  position:sticky;
  top:0;
  z-index:25;
  background:rgba(242,237,227,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(145,102,59,.2);
}
.contents-sticky-inner{
  max-width:1160px;
  margin:0 auto;
  padding:0 clamp(16px,4vw,52px);
  display:flex;
  align-items:center;
  overflow-x:auto;
  scrollbar-width:none;
}
.contents-sticky-inner::-webkit-scrollbar{display:none}
.contents-back{
  flex:0 0 auto;
  padding:14px 18px 14px 0;
  margin-right:7px;
  color:var(--ink);
  font-size:12px;
  white-space:nowrap;
}
.contents-sticky a.catlink{
  flex:0 0 auto;
  padding:14px 13px 12px;
  color:#a09283;
  font-size:11px;
  white-space:nowrap;
  position:relative;
}
.contents-sticky a.catlink.active{
  color:var(--bronze);
  font-weight:600;
}
.contents-sticky a.catlink.active::after{
  content:"";
  position:absolute;
  left:27%;
  right:27%;
  bottom:6px;
  height:1px;
  background:currentColor;
}
.contents-sticky .dot{color:#cbb9a5;font-size:9px}

/* article */
.contents-article-head{
  margin-bottom:42px;
}
.contents-article-head .article-cat{
  color:var(--bronze);
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:.18em;
  font-size:10px;
}
.contents-article-head h1{
  margin:10px 0 12px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,4.6vw,56px);
  font-weight:400;
  line-height:1.2;
}
.contents-article-head .article-date{
  color:#a09283;
  font-size:10px;
}
.contents-article-body{
  color:#61564c;
  font-size:15px;
  line-height:1.95;
}
.contents-article-body img{
  width:100%;
  max-height:600px;
  object-fit:cover;
  display:block;
  margin:34px 0;
}
.contents-article-body h2{
  margin:48px 0 14px;
  color:var(--ink);
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  font-size:28px;
}
.contents-article-bottom{
  margin-top:70px;
  padding-top:22px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:24px;
}
.contents-article-bottom a{
  color:var(--bronze);
  font-size:12px;
}
.contents-article-bottom .disabled{visibility:hidden}

@media(max-width:760px){
  body.contents-entry-v10{min-height:640px}
  .contents-entry-v10 .site-header{flex-basis:70px}
  .contents-cover{flex-basis:27vh;min-height:190px}
  .contents-stage{padding-top:18px}
  .contents-category-row{grid-template-columns:repeat(5,minmax(88px,1fr));overflow-x:auto;scrollbar-width:none}
  .contents-category-row::-webkit-scrollbar{display:none}
  .contents-cat{padding:15px 10px}
  .contents-list-head{display:block}
  .contents-list-sub{margin-top:12px}
  .contents-title-row{grid-template-columns:64px 1fr 18px;gap:10px}
}

/* ===== Shared source / copy attribution v1.1 ===== */
.source-tools{
  margin-top:58px;
  padding-top:20px;
  border-top:1px solid var(--line);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px 22px;
}
.source-copy-btn{
  border:1px solid rgba(145,102,59,.4);
  background:transparent;
  color:var(--bronze);
  padding:10px 14px;
  font-family:inherit;
  font-size:11px;
  cursor:pointer;
  border-radius:999px;
}
.source-copy-btn:hover{
  border-color:var(--bronze);
}
.source-note{
  margin:0;
  color:#9c8f81;
  font-size:10px;
  line-height:1.6;
}
.source-toast{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%) translateY(12px);
  z-index:80;
  background:rgba(38,29,23,.92);
  color:#fffaf3;
  padding:9px 14px;
  border-radius:999px;
  font-size:11px;
  opacity:0;
  pointer-events:none;
  transition:.22s ease;
}
.source-toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* ===== CONTENTS ENTRY v1.2 : search + growing title archive ===== */
body.contents-entry-v12{
  height:100vh;
  min-height:690px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.contents-entry-v12 .site-header{flex:0 0 78px}

.contents-entry-v12 .contents-cover-v12{
  flex:0 0 31vh;
  min-height:218px;
  max-height:350px;
  position:relative;
  overflow:hidden;
  background:#251d18;
}
.contents-entry-v12 .contents-cover-v12 img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  filter:saturate(.88) contrast(.98) brightness(.88);
}
.contents-entry-v12 .contents-cover-v12::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(13,10,8,.05),rgba(13,10,8,.19));
}
.contents-entry-v12 .contents-cover-v12 h1{
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  margin:0;
  color:rgba(255,250,241,.85);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(27px,3vw,43px);
  font-weight:400;
  letter-spacing:.22em;
}

.contents-home-body{
  flex:1 1 auto;
  min-height:0;
  width:100%;
  max-width:1080px;
  margin:0 auto;
  padding:22px clamp(24px,5vw,64px) 20px;
  display:flex;
  flex-direction:column;
}
.contents-home-optional{
  margin:0 0 14px;
  text-align:center;
  color:#6d6258;
  font-size:12px;
  line-height:1.55;
}
.contents-home-optional:empty{
  display:none;
  margin:0;
}

.contents-home-search{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:10px;
  width:min(720px,100%);
  margin:0 auto 16px;
  border-bottom:1px solid rgba(145,102,59,.48);
  padding:0 2px 9px;
}
.contents-home-search input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  color:var(--ink);
  font:inherit;
  font-size:13px;
}
.contents-home-search input::placeholder{color:#aa9c8d}
.contents-home-search button{
  border:0;
  background:transparent;
  color:var(--bronze);
  font-size:17px;
  cursor:pointer;
}

.contents-home-list{
  flex:1 1 auto;
  min-height:0;
  overflow-y:auto;
  scrollbar-width:thin;
  scrollbar-color:rgba(145,102,59,.22) transparent;
  border-top:1px solid var(--line);
}
.contents-home-list::-webkit-scrollbar{width:4px}
.contents-home-list::-webkit-scrollbar-thumb{background:rgba(145,102,59,.22)}
.contents-home-row{
  display:grid;
  grid-template-columns:1fr 22px;
  gap:20px;
  align-items:center;
  padding:16px 3px;
  border-bottom:1px solid var(--line);
  color:var(--ink);
}
.contents-home-row:hover{
  color:var(--bronze);
}
.contents-home-row .title{
  font-size:14px;
  line-height:1.45;
}
.contents-home-row .arrow{
  text-align:right;
  color:#aa9885;
}
.contents-home-bottom{
  flex:0 0 auto;
  margin:10px 0 0;
  text-align:center;
  color:#b1a393;
  font-size:9px;
  letter-spacing:.04em;
}

@media(max-width:760px){
  body.contents-entry-v12{min-height:640px}
  .contents-entry-v12 .site-header{flex-basis:70px}
  .contents-entry-v12 .contents-cover-v12{
    flex-basis:27vh;
    min-height:188px;
  }
  .contents-home-body{
    padding-top:17px;
    padding-left:18px;
    padding-right:18px;
  }
  .contents-home-row{
    padding:14px 2px;
  }
  .contents-home-row .title{
    font-size:13px;
  }
}

/* ===== COLLECTION v1.3 ===== */
body.collection-entry-v13{
  height:100vh;
  min-height:690px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.collection-entry-v13 .site-header{flex:0 0 78px}

.collection-feature{
  flex:1 1 auto;
  min-height:0;
  position:relative;
  overflow:hidden;
  background:#251d18;
  cursor:pointer;
}
.collection-feature img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:50% 55%;
  filter:saturate(.9) contrast(.99) brightness(.9);
  transition:opacity .25s ease, transform .4s ease;
}
.collection-feature:hover img{
  transform:scale(1.006);
}
.collection-feature::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg,rgba(12,9,7,.04),rgba(12,9,7,.16)),
    linear-gradient(90deg,rgba(12,9,7,.04),transparent 45%,rgba(12,9,7,.04));
}
.collection-title{
  position:absolute;
  z-index:3;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  margin:0;
  color:rgba(255,250,241,.85);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(28px,3vw,44px);
  font-weight:400;
  letter-spacing:.22em;
  pointer-events:none;
}
.collection-work-meta{
  position:absolute;
  z-index:3;
  left:clamp(24px,4.8vw,70px);
  bottom:24px;
  color:rgba(255,250,241,.88);
  pointer-events:none;
}
.collection-work-meta .eyebrow{
  display:block;
  margin-bottom:5px;
  color:rgba(226,208,186,.9);
  font-size:9px;
  letter-spacing:.2em;
}
.collection-work-meta strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  font-size:16px;
  letter-spacing:.04em;
}

.collection-strip-wrap{
  flex:0 0 154px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:12px clamp(22px,4.6vw,66px) 14px;
}
.collection-optional-copy{
  margin:0 0 8px;
  text-align:center;
  color:#70655b;
  font-size:11px;
}
.collection-optional-copy:empty{
  display:none;
  margin:0;
}
.collection-strip{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  overflow-x:auto;
  scrollbar-width:none;
}
.collection-strip::-webkit-scrollbar{display:none}
.collection-thumb{
  flex:0 0 116px;
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;
  color:#9c8c7c;
}
.collection-thumb-frame{
  display:block;
  width:116px;
  aspect-ratio:1.58/1;
  overflow:hidden;
  border:1px solid rgba(145,102,59,.15);
  border-radius:10px;
  background:#d2c7ba;
  transition:.2s ease;
}
.collection-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.78) brightness(.92);
}
.collection-thumb .label{
  display:block;
  margin-top:6px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:9px;
  letter-spacing:.08em;
  white-space:nowrap;
}
.collection-thumb.active{
  color:var(--bronze);
}
.collection-thumb.active .collection-thumb-frame{
  border-color:var(--bronze);
  box-shadow:0 0 0 2px rgba(145,102,59,.08);
}
.collection-thumb:hover .collection-thumb-frame{
  transform:translateY(-2px);
}
.collection-more{
  flex:0 0 auto;
  margin-left:6px;
  color:#9a8977;
  font-size:18px;
}

/* COLLECTION detail */
.collection-detail-page{
  min-height:100vh;
  background:var(--paper);
}
.collection-detail-hero{
  max-width:1180px;
  margin:0 auto;
  padding:46px clamp(22px,5vw,68px) 0;
}
.collection-detail-hero .meta{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:22px;
}
.collection-detail-hero .meta small{
  color:var(--bronze);
  font-size:9px;
  letter-spacing:.22em;
}
.collection-detail-hero h1{
  margin:6px 0 0;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  font-size:clamp(36px,5vw,62px);
}
.collection-detail-main-image{
  width:100%;
  max-height:640px;
  object-fit:cover;
  display:block;
}
.collection-detail-copy{
  max-width:820px;
  margin:44px auto 0;
  color:#62574d;
  line-height:1.95;
  font-size:15px;
}
.collection-detail-copy h2{
  margin:46px 0 14px;
  color:var(--ink);
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  font-size:28px;
}
.collection-detail-copy img{
  width:100%;
  max-height:560px;
  object-fit:cover;
  display:block;
  margin:32px 0;
}

@media(max-width:760px){
  body.collection-entry-v13{min-height:640px}
  .collection-entry-v13 .site-header{flex-basis:70px}
  .collection-strip-wrap{flex-basis:145px;padding-left:14px;padding-right:14px}
  .collection-strip{justify-content:flex-start}
  .collection-thumb{flex-basis:96px}
  .collection-thumb-frame{width:96px}
  .collection-work-meta{bottom:16px}
}

/* ===== COLLECTION ENTRY v1.4 : class-like work selection ===== */
body.collection-grid-v14{
  height:100vh;
  min-height:690px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.collection-grid-v14 .site-header{flex:0 0 78px}

.collection-grid-cover{
  flex:0 0 34vh;
  min-height:235px;
  max-height:385px;
  position:relative;
  overflow:hidden;
  background:#251d18;
}
.collection-grid-cover img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:50% 56%;
  filter:saturate(.9) contrast(.98) brightness(.89);
}
.collection-grid-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(14,10,8,.05),rgba(14,10,8,.19));
}
.collection-grid-cover h1{
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  margin:0;
  color:rgba(255,250,241,.85);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(28px,3vw,44px);
  font-weight:400;
  letter-spacing:.22em;
}

.collection-grid-stage{
  flex:1 1 auto;
  min-height:0;
  width:100%;
  max-width:1320px;
  margin:0 auto;
  padding:22px clamp(22px,4.8vw,70px) 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.collection-grid-copy{
  margin:0 0 17px;
  text-align:center;
  color:#6d6258;
  font-size:12px;
}
.collection-grid-copy:empty{
  display:none;
  margin:0;
}
.collection-browser{
  display:grid;
  grid-template-columns:36px 1fr 36px;
  gap:16px;
  align-items:center;
  width:100%;
}
.collection-arrow{
  border:0;
  background:transparent;
  color:#a88868;
  font-family:Georgia,"Times New Roman",serif;
  font-size:27px;
  cursor:pointer;
  padding:14px 4px;
  opacity:.72;
  transition:.18s ease;
}
.collection-arrow:hover{opacity:1;transform:scale(1.06)}
.collection-arrow:disabled{opacity:.18;cursor:default;transform:none}

.collection-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(18px,2.2vw,32px);
}
.collection-work-card{
  min-width:0;
  color:var(--ink);
  display:flex;
  flex-direction:column;
  gap:9px;
}
.collection-work-photo{
  position:relative;
  width:100%;
  aspect-ratio:1.42/1;
  overflow:hidden;
  border:1px solid rgba(145,102,59,.15);
  border-radius:14px;
  background:#d4cabd;
  transition:.22s ease;
}
.collection-work-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.84) brightness(.94);
  transition:transform .35s ease, filter .22s ease;
}
.collection-work-card:hover .collection-work-photo{
  border-color:rgba(145,102,59,.42);
  transform:translateY(-2px);
}
.collection-work-card:hover .collection-work-photo img{
  transform:scale(1.015);
  filter:saturate(.9) brightness(.98);
}
.collection-work-name{
  display:block;
  text-align:center;
  font-family:Georgia,"Times New Roman",serif;
  font-size:11px;
  letter-spacing:.08em;
  color:#75685d;
}
.collection-page-dots{
  display:flex;
  justify-content:center;
  gap:7px;
  margin-top:17px;
}
.collection-page-dot{
  width:4px;
  height:4px;
  padding:0;
  border:0;
  border-radius:50%;
  background:#c7b8a7;
}
.collection-page-dot.active{
  background:var(--bronze);
  transform:scale(1.35);
}
.collection-grid-hint{
  margin:10px 0 0;
  text-align:center;
  color:#b0a293;
  font-size:9px;
  letter-spacing:.04em;
}
.collection-grid-hint:empty{display:none}

@media(max-width:900px){
  body.collection-grid-v14{min-height:650px}
  .collection-grid-v14 .site-header{flex-basis:70px}
  .collection-grid-cover{flex-basis:30vh;min-height:205px}
  .collection-grid-stage{padding-top:17px;padding-bottom:15px}
  .collection-browser{grid-template-columns:28px 1fr 28px;gap:8px}
  .collection-arrow{font-size:23px}
  .collection-cards{gap:14px}
  .collection-work-photo{border-radius:11px}
}
@media(max-width:700px){
  body.collection-grid-v14{
    min-height:640px;
  }
  .collection-grid-cover{
    flex-basis:27vh;
    min-height:185px;
  }
  .collection-grid-stage{
    padding-left:13px;
    padding-right:13px;
  }
  .collection-browser{
    grid-template-columns:23px 1fr 23px;
    gap:5px;
  }
  .collection-cards{
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:repeat(2,1fr);
    gap:12px;
  }
  .collection-work-photo{
    aspect-ratio:1.55/1;
  }
  .collection-work-name{font-size:9px}
}

/* ===== COLLECTION v1.5 : type -> works -> detail ===== */
body.collection-types-v15,
body.collection-works-v15{
  height:100vh;
  min-height:690px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.collection-types-v15 .site-header,
.collection-works-v15 .site-header{flex:0 0 78px}

.collection-v15-cover{
  flex:0 0 34vh;
  min-height:235px;
  max-height:385px;
  position:relative;
  overflow:hidden;
  background:#251d18;
}
.collection-v15-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 56%;
  display:block;
  filter:saturate(.9) contrast(.98) brightness(.89);
}
.collection-v15-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(14,10,8,.05),rgba(14,10,8,.19));
}
.collection-v15-cover h1{
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  margin:0;
  color:rgba(255,250,241,.85);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(28px,3vw,44px);
  font-weight:400;
  letter-spacing:.22em;
}

/* Type selector */
.collection-types-stage{
  flex:1 1 auto;
  min-height:0;
  max-width:1240px;
  width:100%;
  margin:0 auto;
  padding:22px clamp(22px,4.8vw,68px) 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.collection-types-copy{
  margin:0 0 18px;
  text-align:center;
  color:#6d6258;
  font-size:12px;
}
.collection-types-copy:empty{display:none;margin:0}
.collection-type-row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
  align-items:stretch;
}
.collection-type-card{
  border:1px solid rgba(145,102,59,.15);
  border-radius:14px;
  padding:22px 10px 19px;
  min-width:0;
  text-align:center;
  color:#827263;
  background:rgba(255,255,255,.13);
  transition:.2s ease;
}
.collection-type-card:hover{
  color:var(--bronze);
  border-color:rgba(145,102,59,.4);
  transform:translateY(-2px);
}
.collection-type-card strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:14px;
  font-weight:400;
  letter-spacing:.08em;
}
.collection-type-card span{
  display:block;
  margin-top:6px;
  color:#a39485;
  font-size:9px;
}
.collection-types-hint{
  margin:14px 0 0;
  text-align:center;
  color:#b1a393;
  font-size:9px;
}

/* Works screen */
.collection-works-stage{
  flex:1 1 auto;
  min-height:0;
  max-width:1320px;
  width:100%;
  margin:0 auto;
  padding:18px clamp(20px,4.6vw,66px) 18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.collection-works-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:14px;
}
.collection-works-head .left small{
  display:block;
  color:#a38970;
  font-size:9px;
  letter-spacing:.2em;
  margin-bottom:4px;
}
.collection-works-head h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(26px,3vw,38px);
  font-weight:400;
}
.collection-back-types{
  color:#8f7b68;
  font-size:11px;
}
.collection-work-browser{
  display:grid;
  grid-template-columns:32px 1fr 32px;
  gap:12px;
  align-items:center;
}
.collection-work-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(16px,2vw,28px);
}
.collection-work-box{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:#776a5f;
}
.collection-work-box .frame{
  width:100%;
  aspect-ratio:1.42/1;
  overflow:hidden;
  border:1px solid rgba(145,102,59,.16);
  border-radius:14px;
  background:#d2c7ba;
  transition:.2s ease;
}
.collection-work-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.84) brightness(.94);
  transition:.3s ease;
}
.collection-work-box:hover .frame{
  border-color:rgba(145,102,59,.42);
  transform:translateY(-2px);
}
.collection-work-box:hover img{transform:scale(1.015)}
.collection-work-box .name{
  text-align:center;
  font-family:Georgia,"Times New Roman",serif;
  font-size:10px;
  letter-spacing:.07em;
}
.collection-work-arrow{
  border:0;
  background:transparent;
  color:#9e7f61;
  font-size:24px;
  cursor:pointer;
  opacity:.75;
}
.collection-work-arrow:disabled{opacity:.18;cursor:default}
.collection-work-dots{
  display:flex;
  justify-content:center;
  gap:7px;
  margin-top:14px;
}
.collection-work-dot{
  width:4px;height:4px;border:0;border-radius:50%;
  background:#c6b6a5;padding:0
}
.collection-work-dot.active{background:var(--bronze);transform:scale(1.35)}

@media(max-width:900px){
  body.collection-types-v15,body.collection-works-v15{min-height:650px}
  .collection-types-v15 .site-header,.collection-works-v15 .site-header{flex-basis:70px}
  .collection-v15-cover{flex-basis:30vh;min-height:205px}
  .collection-type-row{gap:9px}
  .collection-type-card{padding:18px 7px 16px}
  .collection-type-card strong{font-size:12px}
  .collection-work-grid{gap:13px}
}
@media(max-width:700px){
  .collection-v15-cover{flex-basis:27vh;min-height:185px}
  .collection-type-row{
    grid-template-columns:repeat(3,1fr);
    gap:10px;
  }
  .collection-type-card{padding:14px 8px}
  .collection-work-grid{
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:repeat(2,1fr);
  }
  .collection-work-browser{grid-template-columns:22px 1fr 22px;gap:5px}
  .collection-works-head{margin-bottom:10px}
}

/* ===== COLLECTION WORKS v1.6 : 4 works per view ===== */
body.collection-works-v16{
  height:100vh;
  min-height:690px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.collection-works-v16 .site-header{flex:0 0 78px}

.collection-works-v16 .collection-v16-cover{
  flex:0 0 31vh;
  min-height:215px;
  max-height:350px;
  position:relative;
  overflow:hidden;
  background:#251d18;
}
.collection-works-v16 .collection-v16-cover img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:50% 56%;
  filter:saturate(.9) contrast(.98) brightness(.89);
}
.collection-works-v16 .collection-v16-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(14,10,8,.05),rgba(14,10,8,.19));
}
.collection-works-v16 .collection-v16-cover h1{
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  margin:0;
  color:rgba(255,250,241,.85);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(27px,3vw,42px);
  font-weight:400;
  letter-spacing:.22em;
}

.collection-works-v16 .works-shell{
  flex:1 1 auto;
  min-height:0;
  width:100%;
  max-width:1320px;
  margin:0 auto;
  padding:18px clamp(24px,5vw,72px) 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.collection-works-v16 .works-heading{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:end;
  margin-bottom:15px;
}
.collection-works-v16 .works-heading-left{
  justify-self:start;
}
.collection-works-v16 .works-heading-left small{
  display:block;
  margin-bottom:4px;
  color:#a38b73;
  font-size:9px;
  letter-spacing:.2em;
}
.collection-works-v16 .works-heading-left h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(27px,3vw,38px);
  font-weight:400;
  letter-spacing:.03em;
}
.collection-works-v16 .works-count{
  align-self:end;
  padding-bottom:4px;
  color:#9c8976;
  font-family:Georgia,"Times New Roman",serif;
  font-size:11px;
  letter-spacing:.06em;
}
.collection-works-v16 .works-back{
  justify-self:end;
  align-self:end;
  padding-bottom:3px;
  color:#8e7c6a;
  font-size:10px;
}

.collection-works-v16 .works-browser{
  display:grid;
  grid-template-columns:38px minmax(0,1fr) 38px;
  gap:16px;
  align-items:center;
}
.collection-works-v16 .works-arrow{
  border:0;
  background:transparent;
  color:#9d7e61;
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  cursor:pointer;
  padding:18px 4px;
  opacity:.75;
  transition:.18s ease;
}
.collection-works-v16 .works-arrow:hover{
  opacity:1;
  transform:scale(1.06);
}
.collection-works-v16 .works-arrow:disabled{
  opacity:.17;
  cursor:default;
  transform:none;
}

.collection-works-v16 .works-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:clamp(18px,2.2vw,32px);
}
.collection-works-v16 .work-card{
  display:flex;
  flex-direction:column;
  gap:9px;
  min-width:0;
  color:#716458;
}
.collection-works-v16 .work-photo{
  position:relative;
  width:100%;
  aspect-ratio:1.35/1;
  overflow:hidden;
  border:1px solid rgba(145,102,59,.16);
  border-radius:14px;
  background:#d4c9bc;
  transition:.22s ease;
}
.collection-works-v16 .work-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.84) brightness(.94);
  transition:transform .35s ease, filter .22s ease;
}
.collection-works-v16 .work-card:hover .work-photo{
  border-color:rgba(145,102,59,.44);
  transform:translateY(-2px);
}
.collection-works-v16 .work-card:hover .work-photo img{
  transform:scale(1.015);
  filter:saturate(.9) brightness(.98);
}
.collection-works-v16 .work-name{
  display:block;
  text-align:center;
  font-family:Georgia,"Times New Roman",serif;
  font-size:10px;
  letter-spacing:.08em;
}
.collection-works-v16 .works-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:15px;
}
.collection-works-v16 .works-dot{
  width:4px;
  height:4px;
  padding:0;
  border:0;
  border-radius:50%;
  background:#c4b4a3;
  cursor:pointer;
}
.collection-works-v16 .works-dot.active{
  background:var(--bronze);
  transform:scale(1.4);
}

@media(max-width:900px){
  body.collection-works-v16{min-height:650px}
  .collection-works-v16 .site-header{flex-basis:70px}
  .collection-works-v16 .collection-v16-cover{
    flex-basis:28vh;
    min-height:195px;
  }
  .collection-works-v16 .works-shell{
    padding-left:18px;
    padding-right:18px;
  }
  .collection-works-v16 .works-browser{
    grid-template-columns:28px 1fr 28px;
    gap:8px;
  }
  .collection-works-v16 .works-grid{gap:14px}
}
@media(max-width:700px){
  body.collection-works-v16{min-height:640px}
  .collection-works-v16 .collection-v16-cover{
    flex-basis:25vh;
    min-height:175px;
  }
  .collection-works-v16 .works-shell{
    padding:13px 10px 12px;
  }
  .collection-works-v16 .works-heading{
    grid-template-columns:1fr auto;
    margin:0 24px 10px;
  }
  .collection-works-v16 .works-heading-left{
    grid-column:1;
  }
  .collection-works-v16 .works-count{
    grid-column:2;
  }
  .collection-works-v16 .works-back{
    display:none;
  }
  .collection-works-v16 .works-browser{
    grid-template-columns:20px 1fr 20px;
    gap:5px;
  }
  .collection-works-v16 .works-arrow{
    font-size:21px;
    padding:8px 0;
  }
  .collection-works-v16 .works-grid{
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:repeat(2,1fr);
    gap:10px 12px;
  }
  .collection-works-v16 .work-photo{
    aspect-ratio:1.48/1;
    border-radius:11px;
  }
  .collection-works-v16 .work-name{
    font-size:9px;
  }
  .collection-works-v16 .works-dots{
    margin-top:9px;
  }
}

/* ===== NEWS v1.7 ===== */
body.news-entry-v17{
  height:100vh;
  min-height:690px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.news-entry-v17 .site-header{flex:0 0 78px}

.news-cover-v17{
  flex:0 0 31vh;
  min-height:215px;
  max-height:350px;
  position:relative;
  overflow:hidden;
  background:#251d18;
}
.news-cover-v17 img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:50% 54%;
  filter:saturate(.88) contrast(.98) brightness(.88);
}
.news-cover-v17::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(14,10,8,.05),rgba(14,10,8,.2));
}
.news-cover-v17 h1{
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  margin:0;
  color:rgba(255,250,241,.85);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(28px,3vw,43px);
  font-weight:400;
  letter-spacing:.22em;
}

.news-entry-body{
  flex:1 1 auto;
  min-height:0;
  width:100%;
  max-width:1120px;
  margin:0 auto;
  padding:22px clamp(24px,5vw,64px) 18px;
  display:flex;
  flex-direction:column;
}
.news-entry-copy{
  margin:0 0 13px;
  text-align:center;
  color:#6d6258;
  font-size:12px;
}
.news-entry-copy:empty{
  display:none;
  margin:0;
}
.news-list{
  flex:1 1 auto;
  min-height:0;
  overflow-y:auto;
  border-top:1px solid var(--line);
  scrollbar-width:thin;
  scrollbar-color:rgba(145,102,59,.22) transparent;
}
.news-list::-webkit-scrollbar{width:4px}
.news-list::-webkit-scrollbar-thumb{background:rgba(145,102,59,.22)}

.news-row{
  display:grid;
  grid-template-columns:105px 105px 1fr 22px;
  gap:14px;
  align-items:center;
  padding:16px 3px;
  border-bottom:1px solid var(--line);
  color:var(--ink);
}
.news-row:hover{color:var(--bronze)}
.news-date{
  color:#9d8e80;
  font-size:10px;
  letter-spacing:.03em;
}
.news-kind{
  color:#a17d59;
  font-size:9px;
  letter-spacing:.12em;
}
.news-title{
  font-size:14px;
  line-height:1.45;
}
.news-arrow{
  text-align:right;
  color:#aa9885;
}
.news-entry-bottom{
  margin:10px 0 0;
  text-align:center;
  color:#b1a393;
  font-size:9px;
}

/* NEWS detail */
body.news-detail-page{
  min-height:100vh;
  background:var(--paper);
}
.news-detail-wrap{
  max-width:900px;
  margin:0 auto;
  padding:54px clamp(24px,5vw,64px) 90px;
}
.news-detail-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  align-items:center;
  margin-bottom:13px;
  color:#9a8876;
  font-size:10px;
  letter-spacing:.08em;
}
.news-detail-meta .kind{color:var(--bronze)}
.news-detail-title{
  margin:0 0 30px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,5vw,58px);
  line-height:1.16;
  font-weight:400;
}
.news-detail-hero{
  width:100%;
  max-height:560px;
  object-fit:cover;
  display:block;
  margin-bottom:36px;
}
.news-detail-body{
  color:#62574d;
  font-size:15px;
  line-height:1.95;
}
.news-detail-body h2{
  margin:46px 0 14px;
  color:var(--ink);
  font-family:Georgia,"Times New Roman",serif;
  font-size:27px;
  font-weight:400;
}
.news-detail-body img{
  display:block;
  width:100%;
  max-height:560px;
  object-fit:cover;
  margin:32px 0;
}
.news-external-link{
  display:inline-block;
  margin-top:22px;
  padding-bottom:3px;
  border-bottom:1px solid rgba(145,102,59,.45);
  color:var(--bronze);
  font-size:11px;
}

@media(max-width:760px){
  body.news-entry-v17{min-height:640px}
  .news-entry-v17 .site-header{flex-basis:70px}
  .news-cover-v17{flex-basis:27vh;min-height:185px}
  .news-entry-body{padding:17px 18px 14px}
  .news-row{
    grid-template-columns:84px 78px 1fr 15px;
    gap:8px;
    padding:14px 2px;
  }
  .news-date{font-size:9px}
  .news-kind{font-size:8px}
  .news-title{font-size:12px}
}

/* ===== ABOUT v1.8 ===== */
body.about-entry-v18{
  height:100vh;
  min-height:690px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.about-entry-v18 .site-header{flex:0 0 78px}

.about-cover-v18{
  flex:0 0 31vh;
  min-height:215px;
  max-height:350px;
  position:relative;
  overflow:hidden;
  background:#251d18;
}
.about-cover-v18 img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:50% 54%;
  filter:saturate(.86) contrast(.98) brightness(.88);
}
.about-cover-v18::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(14,10,8,.05),rgba(14,10,8,.2));
}
.about-cover-v18 h1{
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  margin:0;
  color:rgba(255,250,241,.85);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(28px,3vw,43px);
  font-weight:400;
  letter-spacing:.22em;
}

.about-entry-body{
  flex:1 1 auto;
  min-height:0;
  width:100%;
  max-width:1120px;
  margin:0 auto;
  padding:24px clamp(24px,5vw,64px) 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.about-entry-copy{
  margin:0 0 18px;
  text-align:center;
  color:#6d6258;
  font-size:12px;
}
.about-entry-copy:empty{display:none;margin:0}

.about-choice-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.about-choice{
  border:1px solid rgba(145,102,59,.16);
  border-radius:14px;
  padding:26px 22px 24px;
  background:rgba(255,255,255,.12);
  color:#6f6257;
  transition:.2s ease;
  min-height:128px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.about-choice:hover{
  color:var(--bronze);
  border-color:rgba(145,102,59,.42);
  transform:translateY(-2px);
}
.about-choice small{
  display:block;
  color:#a88c70;
  font-size:9px;
  letter-spacing:.2em;
  margin-bottom:7px;
}
.about-choice strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
  font-weight:400;
  letter-spacing:.04em;
}
.about-choice span{
  display:block;
  margin-top:7px;
  color:#a29384;
  font-size:10px;
  line-height:1.55;
}
.about-entry-signature{
  margin:19px 0 0;
  text-align:center;
  color:#a79787;
  font-size:9px;
  letter-spacing:.06em;
}

/* ABOUT detail */
body.about-detail-page{
  min-height:100vh;
  background:var(--paper);
}
.about-detail-wrap{
  max-width:980px;
  margin:0 auto;
  padding:50px clamp(24px,5vw,68px) 90px;
}
.about-detail-head{
  margin-bottom:28px;
}
.about-detail-head small{
  display:block;
  margin-bottom:8px;
  color:var(--bronze);
  font-size:9px;
  letter-spacing:.2em;
}
.about-detail-head h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(36px,5vw,60px);
  line-height:1.15;
  font-weight:400;
}
.about-profile-grid{
  display:grid;
  grid-template-columns:minmax(240px,.8fr) minmax(0,1.2fr);
  gap:42px;
  align-items:start;
}
.about-profile-photo{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  display:block;
  border-radius:14px;
}
.about-detail-body{
  color:#62574d;
  font-size:15px;
  line-height:1.95;
}
.about-detail-body h2{
  margin:40px 0 14px;
  color:var(--ink);
  font-family:Georgia,"Times New Roman",serif;
  font-size:27px;
  font-weight:400;
}
.about-detail-body ul{
  margin:16px 0;
  padding-left:18px;
}
.about-detail-body li{
  margin:8px 0;
}
.about-detail-body img{
  display:block;
  width:100%;
  max-height:560px;
  object-fit:cover;
  margin:30px 0;
}

@media(max-width:760px){
  body.about-entry-v18{min-height:640px}
  .about-entry-v18 .site-header{flex-basis:70px}
  .about-cover-v18{flex-basis:27vh;min-height:185px}
  .about-entry-body{padding:18px}
  .about-choice-row{
    grid-template-columns:1fr;
    gap:10px;
  }
  .about-choice{
    min-height:82px;
    padding:16px 18px;
  }
  .about-choice strong{font-size:18px}
  .about-choice span{font-size:9px}
  .about-profile-grid{
    grid-template-columns:1fr;
    gap:26px;
  }
  .about-profile-photo{
    max-width:420px;
    margin:0 auto;
  }
}


/* =========================================================
   OH SANG JUN v2.0 MASTER — confirmed global refinements
   ========================================================= */

:root{
  --section-title-neutral:rgba(238,234,228,.75);
}

/* Section title: neutral grey-ivory, softer than previous warm ivory */
.class-cover-title,
.entry-hero .hero-label,
.contents-cover-v12 h1,
.collection-v15-cover h1,
.collection-v16-cover h1,
.news-cover-v17 h1,
.about-cover-v18 h1,
.schedule-cover h1,
.visit-cover h1{
  color:var(--section-title-neutral) !important;
}

/* Keep section title centered on image wherever a section uses a photo hero */
.entry-hero .hero-label{
  left:50% !important;
  top:50% !important;
  transform:translate(-50%,-50%) !important;
  font-size:clamp(27px,3vw,43px) !important;
  letter-spacing:.22em !important;
  white-space:nowrap;
}

/* HOME: short brand opening, no separate opening page */
.home-opening{
  position:fixed;
  inset:0;
  z-index:999;
  display:grid;
  place-items:center;
  background:var(--paper-2);
  pointer-events:none;
  animation:homeOpening 1.55s ease forwards;
}
.home-opening-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:13px;
  opacity:0;
  animation:homeOpeningBrand 1.18s ease forwards;
}
.home-opening img{
  width:min(330px,62vw);
  height:auto;
}
.home-opening span{
  font-family:Georgia,"Times New Roman",serif;
  font-size:10px;
  letter-spacing:.34em;
  color:#74685d;
}
@keyframes homeOpening{
  0%,68%{opacity:1}
  100%{opacity:0;visibility:hidden}
}
@keyframes homeOpeningBrand{
  0%{opacity:0;transform:translateY(4px)}
  35%,74%{opacity:1;transform:none}
  100%{opacity:0}
}

/* HOME now supports 8 primary sections including SCHEDULE */
.home-entry-v09 .home-menu-v09{
  flex:0 0 118px;
  display:grid !important;
  grid-template-columns:repeat(8,minmax(0,1fr)) !important;
  align-items:stretch;
  width:100%;
  max-width:1380px;
  margin:0 auto;
  padding:18px clamp(22px,4vw,58px) 16px !important;
}
.home-entry-v09 .home-menu-v09 a{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-left:1px solid rgba(145,102,59,.16);
}
.home-entry-v09 .home-menu-v09 a:last-child{
  border-right:1px solid rgba(145,102,59,.16);
}
@media(max-width:760px){
  .home-entry-v09 .home-menu-v09{
    flex-basis:154px !important;
    grid-template-columns:repeat(4,1fr) !important;
    grid-template-rows:repeat(2,1fr);
    padding:8px 12px 10px !important;
  }
  .home-entry-v09 .home-menu-v09 a{
    border-left:0;
    border-right:1px solid rgba(145,102,59,.13);
    border-bottom:1px solid rgba(145,102,59,.13);
    padding:7px 4px !important;
  }
  .home-entry-v09 .home-menu-v09 a:nth-child(4n){
    border-right:0;
  }
  .home-entry-v09 .home-menu-v09 a:nth-child(n+5){
    border-bottom:0;
  }
}

/* ---------- CLASS INFO ---------- */
.class-info-link-wrap{
  display:flex;
  justify-content:center;
  margin-top:44px;
}
.class-info-link{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:9px 15px;
  border:1px solid rgba(145,102,59,.25);
  border-radius:999px;
  color:#7d6b5a;
  font-family:Georgia,"Times New Roman",serif;
  font-size:10px;
  letter-spacing:.12em;
  transition:.2s ease;
}
.class-info-link:hover{
  color:var(--bronze);
  border-color:rgba(145,102,59,.5);
}
.class-info-page{
  min-height:100vh;
  background:var(--paper);
}
.class-info-wrap{
  max-width:1020px;
  margin:0 auto;
  padding:54px clamp(24px,5vw,68px) 90px;
}
.class-info-wrap h1{
  margin:0 0 10px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(38px,5vw,62px);
  font-weight:400;
}
.class-info-lead{
  margin:0 0 34px;
  color:#75685c;
  line-height:1.8;
}
.class-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.class-info-card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:25px 22px;
  background:rgba(255,255,255,.14);
}
.class-info-card small{
  display:block;
  margin-bottom:7px;
  color:#a08972;
  font-size:9px;
  letter-spacing:.17em;
}
.class-info-card strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
  font-weight:400;
}
.class-info-card p{
  margin:10px 0 0;
  color:#7e7063;
  font-size:12px;
  line-height:1.7;
}
.class-info-note{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:#908173;
  font-size:11px;
  line-height:1.8;
}
@media(max-width:720px){
  .class-info-grid{grid-template-columns:1fr}
}

/* ---------- BESPOKE final entry ---------- */
body.bespoke-entry-v20{
  height:100vh;
  min-height:690px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.bespoke-entry-v20 .site-header{flex:0 0 78px}
.bespoke-entry-v20 .entry-hero{
  flex:0 0 30vh;
  min-height:210px;
  max-height:340px;
}
.bespoke-entry-v20 .entry-stage{
  flex:1 1 auto;
  min-height:0;
  max-width:1180px;
  width:100%;
  margin:0 auto;
  padding:20px clamp(22px,4.7vw,64px) 18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.bespoke-entry-v20 .entry-line:empty{
  display:none;
  margin:0;
}
.bespoke-process-row{
  display:grid;
  grid-template-columns:1fr 25px 1fr 25px 1fr;
  gap:10px;
  align-items:center;
  max-width:900px;
  width:100%;
  margin:0 auto 16px;
}
.bespoke-process-card{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:#75675b;
}
.bespoke-process-photo{
  width:100%;
  aspect-ratio:1.72/1;
  overflow:hidden;
  border:1px solid rgba(145,102,59,.16);
  border-radius:14px;
  background:#d2c7ba;
  transition:.22s ease;
}
.bespoke-process-photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  filter:saturate(.84) brightness(.94);
  transition:.3s ease;
}
.bespoke-process-card:hover .bespoke-process-photo{
  transform:translateY(-2px);
  border-color:rgba(145,102,59,.42);
}
.bespoke-process-card:hover img{transform:scale(1.012)}
.bespoke-process-title{
  text-align:center;
  font-size:11px;
  letter-spacing:.04em;
}
.bespoke-process-arrow{
  color:#b39e89;
  text-align:center;
  font-family:Georgia,"Times New Roman",serif;
  font-size:20px;
  transform:translateY(-10px);
}
.bespoke-gallery-v20{
  position:relative;
  display:block;
  max-width:960px;
  width:100%;
  margin:0 auto;
  overflow:hidden;
  min-height:112px;
  border:1px solid rgba(145,102,59,.2);
  background:#2f261f;
  clip-path:polygon(18px 0,calc(100% - 18px) 0,100% 18px,100% calc(100% - 18px),calc(100% - 18px) 100%,18px 100%,0 calc(100% - 18px),0 18px);
}
.bespoke-gallery-v20 img{
  width:100%;
  height:132px;
  display:block;
  object-fit:cover;
  object-position:50% 57%;
  filter:saturate(.82) brightness(.67);
  transition:.3s ease;
}
.bespoke-gallery-v20:hover img{transform:scale(1.008)}
.bespoke-gallery-v20 span{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:rgba(245,241,234,.88);
  font-family:Georgia,"Times New Roman",serif;
  font-size:15px;
  letter-spacing:.18em;
}
@media(max-width:720px){
  body.bespoke-entry-v20{min-height:640px}
  .bespoke-entry-v20 .site-header{flex-basis:70px}
  .bespoke-entry-v20 .entry-hero{flex-basis:26vh;min-height:180px}
  .bespoke-entry-v20 .entry-stage{padding:14px 14px}
  .bespoke-process-row{
    grid-template-columns:1fr 14px 1fr 14px 1fr;
    gap:5px;
    margin-bottom:12px;
  }
  .bespoke-process-photo{border-radius:10px}
  .bespoke-process-title{font-size:9px}
  .bespoke-gallery-v20 img{height:105px}
  .bespoke-gallery-v20 span{font-size:12px}
}

/* ---------- SCHEDULE ---------- */
body.schedule-entry-v20{
  height:100vh;
  min-height:690px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.schedule-entry-v20 .site-header{flex:0 0 78px}
.schedule-cover{
  flex:0 0 26vh;
  min-height:185px;
  max-height:300px;
  position:relative;
  overflow:hidden;
  background:#251d18;
}
.schedule-cover img{
  width:100%;height:100%;display:block;object-fit:cover;object-position:50% 56%;
  filter:saturate(.88) contrast(.98) brightness(.88);
}
.schedule-cover::after{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(14,10,8,.05),rgba(14,10,8,.2));
}
.schedule-cover h1{
  position:absolute;z-index:2;left:50%;top:50%;transform:translate(-50%,-50%);
  margin:0;font-family:Georgia,"Times New Roman",serif;font-size:clamp(28px,3vw,43px);
  font-weight:400;letter-spacing:.22em;
}
.schedule-stage{
  flex:1 1 auto;
  min-height:0;
  max-width:1120px;
  width:100%;
  margin:0 auto;
  padding:15px clamp(18px,4vw,52px) 16px;
  display:flex;
  flex-direction:column;
}
.schedule-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:10px;
}
.schedule-month{
  font-family:Georgia,"Times New Roman",serif;
  font-size:20px;
  font-weight:400;
}
.schedule-legend{
  display:flex;
  gap:12px;
  color:#938474;
  font-size:9px;
}
.schedule-legend span::before{
  content:"";
  display:inline-block;
  width:5px;height:5px;border-radius:50%;
  background:#aa8d70;
  margin-right:5px;vertical-align:middle;
}
.schedule-calendar{
  flex:1 1 auto;
  min-height:0;
  display:grid;
  grid-template-columns:repeat(7,1fr);
  grid-template-rows:auto repeat(6,minmax(0,1fr));
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}
.schedule-dow,
.schedule-day{
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.schedule-dow{
  padding:6px 5px;
  text-align:center;
  color:#9a8b7c;
  font-size:9px;
}
.schedule-day{
  position:relative;
  padding:6px;
  overflow:hidden;
}
.schedule-day.muted{opacity:.28}
.schedule-num{
  display:block;
  color:#786b60;
  font-size:9px;
}
.schedule-event{
  display:block;
  margin-top:4px;
  padding:3px 5px;
  border-radius:6px;
  background:rgba(145,102,59,.1);
  color:#7b5d42;
  font-size:8px;
  line-height:1.25;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.schedule-demo-note{
  flex:0 0 auto;
  margin:9px 0 0;
  text-align:center;
  color:#ad9f91;
  font-size:8px;
}
@media(max-width:720px){
  body.schedule-entry-v20{min-height:640px}
  .schedule-entry-v20 .site-header{flex-basis:70px}
  .schedule-cover{flex-basis:22vh;min-height:155px}
  .schedule-stage{padding:10px}
  .schedule-legend{display:none}
  .schedule-day{padding:4px}
  .schedule-event{font-size:7px;padding:2px 3px}
}

/* ---------- VISIT ---------- */
body.visit-entry-v20{
  height:100vh;
  min-height:690px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--paper);
}
.visit-entry-v20 .site-header{flex:0 0 78px}
.visit-cover{
  flex:0 0 28vh;
  min-height:200px;
  max-height:320px;
  position:relative;
  overflow:hidden;
  background:#251d18;
}
.visit-cover img{
  width:100%;height:100%;display:block;object-fit:cover;object-position:50% 56%;
  filter:saturate(.88) contrast(.98) brightness(.88);
}
.visit-cover::after{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(14,10,8,.05),rgba(14,10,8,.2));
}
.visit-cover h1{
  position:absolute;z-index:2;left:50%;top:50%;transform:translate(-50%,-50%);
  margin:0;font-family:Georgia,"Times New Roman",serif;font-size:clamp(28px,3vw,43px);
  font-weight:400;letter-spacing:.22em;
}
.visit-stage{
  flex:1 1 auto;
  min-height:0;
  max-width:1120px;
  width:100%;
  margin:0 auto;
  padding:20px clamp(22px,4.8vw,66px) 18px;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:22px;
  align-items:stretch;
}
.visit-info{
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:18px 0;
}
.visit-info-row{
  display:grid;
  grid-template-columns:85px 1fr;
  gap:12px;
  padding:11px 2px;
  border-bottom:1px solid rgba(217,206,190,.75);
}
.visit-info-row:last-child{border-bottom:0}
.visit-info-row small{
  color:#9e8975;
  font-size:9px;
  letter-spacing:.1em;
}
.visit-info-row strong{
  color:#66594e;
  font-size:12px;
  font-weight:400;
}
.visit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.visit-action{
  padding:8px 12px;
  border:1px solid rgba(145,102,59,.25);
  border-radius:999px;
  color:#806d5a;
  font-size:9px;
}
.visit-map-placeholder{
  position:relative;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(145,102,59,.05) 1px,transparent 1px),
    linear-gradient(rgba(145,102,59,.05) 1px,transparent 1px),
    #eee7da;
  background-size:32px 32px;
  display:grid;
  place-items:center;
  color:#9b8b7b;
  min-height:210px;
}
.visit-map-placeholder::before{
  content:"";
  width:14px;height:14px;border:2px solid #9f7d5d;border-radius:50% 50% 50% 0;
  transform:rotate(-45deg);
  position:absolute;
  top:42%;left:50%;
}
.visit-map-placeholder span{
  margin-top:48px;
  font-size:10px;
}
@media(max-width:720px){
  body.visit-entry-v20{min-height:640px}
  .visit-entry-v20 .site-header{flex-basis:70px}
  .visit-cover{flex-basis:24vh;min-height:165px}
  .visit-stage{
    grid-template-columns:1fr;
    gap:10px;
    padding:12px 15px;
  }
  .visit-map-placeholder{min-height:135px}
  .visit-info-row{padding:7px 2px}
}

/* Prototype-only small note, hidden from future production by removing .prototype-note elements */
.prototype-note{
  color:#b0a394;
  font-size:8px;
  line-height:1.5;
}


/* v2.1 header refinement */
.site-header .brand{
  align-items:center;
}
.site-header .brand-sub{
  position:relative;
  top:3px;
}

/* v2.1 opening transition: slower 2.6s crossfade into HOME */
.home-opening{
  animation:homeOpeningV21 2.6s cubic-bezier(.4,0,.2,1) forwards !important;
}
.home-opening-inner{
  animation:homeOpeningBrandV21 2.6s cubic-bezier(.4,0,.2,1) forwards !important;
}
@keyframes homeOpeningV21{
  0%{opacity:1;visibility:visible}
  58%{opacity:1;visibility:visible}
  100%{opacity:0;visibility:hidden}
}
@keyframes homeOpeningBrandV21{
  0%{opacity:0;transform:translateY(5px)}
  24%{opacity:1;transform:translateY(0)}
  58%{opacity:1;transform:translateY(0)}
  100%{opacity:0;transform:translateY(-2px)}
}


/* v2.2 opening timing refinement
   Total remains 2.6s.
   Initial fade-in is deliberately longer and softer. */
.home-opening{
  animation:homeOpeningV22 2.6s cubic-bezier(.4,0,.2,1) forwards !important;
}
.home-opening-inner{
  animation:homeOpeningBrandV22 2.6s cubic-bezier(.4,0,.2,1) forwards !important;
}
@keyframes homeOpeningV22{
  0%{opacity:1;visibility:visible}
  56%{opacity:1;visibility:visible}
  100%{opacity:0;visibility:hidden}
}
@keyframes homeOpeningBrandV22{
  0%{opacity:0;transform:translateY(5px)}
  42%{opacity:1;transform:translateY(0)}
  56%{opacity:1;transform:translateY(0)}
  100%{opacity:0;transform:translateY(-2px)}
}


/* v2.3 opening timing refinement
   Make the WORDMARK'S own fade-out clearly visible before the background crossfades. */
.home-opening{
  animation:homeOpeningV23 2.8s cubic-bezier(.4,0,.2,1) forwards !important;
}
.home-opening-inner{
  animation:homeOpeningBrandV23 2.8s cubic-bezier(.4,0,.2,1) forwards !important;
}
@keyframes homeOpeningV23{
  0%{opacity:1;visibility:visible}
  78%{opacity:1;visibility:visible}
  100%{opacity:0;visibility:hidden}
}
@keyframes homeOpeningBrandV23{
  0%{opacity:0;transform:translateY(5px)}
  34%{opacity:1;transform:translateY(0)}
  47%{opacity:1;transform:translateY(0)}
  78%{opacity:0;transform:translateY(-1px)}
  100%{opacity:0;transform:translateY(-1px)}
}


/* v2.4 HOME opening: full-screen rainy frosted glass + left-to-right wipe reveal */
.home-opening{
  position:fixed;
  inset:0;
  z-index:999;
  overflow:hidden;
  display:block;
  pointer-events:none;
  background:rgba(122,136,151,.10);
  -webkit-backdrop-filter:blur(9px) saturate(.82) brightness(.98);
  backdrop-filter:blur(9px) saturate(.82) brightness(.98);
  animation:homeOpeningGlassWipeV24 3.45s cubic-bezier(.62,0,.26,1) forwards !important;
}
.home-opening::before,
.home-opening::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}
.home-opening::before{
  background:
    linear-gradient(180deg, rgba(230,236,241,.25), rgba(141,159,176,.18)),
    radial-gradient(circle at 8% 24%, rgba(255,255,255,.30) 0 1px, transparent 2px) 0 0/20px 20px,
    radial-gradient(circle at 55% 48%, rgba(255,255,255,.18) 0 1.2px, transparent 2.5px) 0 0/28px 28px,
    radial-gradient(circle at 82% 26%, rgba(255,255,255,.16) 0 1px, transparent 2.2px) 0 0/24px 24px,
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 130px);
  opacity:.92;
}
.home-opening::after{
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.00) 0%,
      rgba(255,255,255,.09) 10%,
      rgba(255,255,255,.05) 18%,
      rgba(255,255,255,.02) 26%,
      rgba(255,255,255,.00) 34%,
      rgba(255,255,255,.06) 46%,
      rgba(255,255,255,.00) 60%,
      rgba(255,255,255,.04) 74%,
      rgba(255,255,255,.00) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 140px),
    repeating-linear-gradient(180deg, rgba(255,255,255,.00) 0 22px, rgba(255,255,255,.08) 22px 24px, rgba(255,255,255,.00) 24px 96px);
  mix-blend-mode:screen;
  opacity:.30;
}
.home-opening-inner{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:22px;
  width:min(90vw,1100px);
  padding:0 24px;
  opacity:0;
  animation:homeOpeningBrandGlassV24 3.45s cubic-bezier(.4,0,.2,1) forwards !important;
}
.home-opening img{
  width:min(600px,65vw);
  max-width:100%;
  height:auto;
  opacity:.5;
  filter:sepia(.18) saturate(.55) brightness(.46) contrast(1.02);
}
.home-opening span{
  display:block;
  margin-bottom:13px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(11px,1vw,14px);
  letter-spacing:.46em;
  color:rgba(74,63,56,.50);
  white-space:nowrap;
}
@keyframes homeOpeningGlassWipeV24{
  0%{clip-path:inset(0 0 0 0);opacity:1;visibility:visible}
  56%{clip-path:inset(0 0 0 0);opacity:1;visibility:visible}
  100%{clip-path:inset(0 0 0 100%);opacity:1;visibility:hidden}
}
@keyframes homeOpeningBrandGlassV24{
  0%{opacity:0;transform:translate(-50%,-50%) translateY(8px)}
  18%{opacity:.5;transform:translate(-50%,-50%) translateY(0)}
  56%{opacity:.5;transform:translate(-50%,-50%) translateY(0)}
  82%{opacity:0;transform:translate(-50%,-50%) translateY(-1px)}
  100%{opacity:0;transform:translate(-50%,-50%) translateY(-1px)}
}
.site-header .brand{
  align-items:flex-end;
  gap:16px;
}
.site-header .brand img{
  width:min(290px,43vw);
}
.site-header .brand-sub{
  top:auto;
  margin-bottom:11px;
  font-size:11px;
  letter-spacing:.42em;
  color:#776b60;
}
@media (max-width: 900px){
  .site-header .brand-sub{
    margin-bottom:9px;
    letter-spacing:.38em;
  }
  .home-opening-inner{
    gap:16px;
  }
}
@media (max-width: 700px){
  .home-opening-inner{
    flex-direction:column;
    align-items:center;
    gap:10px;
  }
  .home-opening img{
    width:min(78vw,420px);
  }
  .home-opening span{
    margin-bottom:0;
    letter-spacing:.36em;
    font-size:10px;
  }
  .site-header .brand{
    gap:10px;
    align-items:center;
  }
  .site-header .brand img{width:min(222px,54vw)}
  .site-header .brand-sub{
    margin-bottom:0;
    font-size:9px;
    letter-spacing:.34em;
  }
}


/* =========================================================
   v2.5 FINAL OPENING TEST
   Rainy blue-grey glass + organic left-to-right wiped reveal
   ========================================================= */

.rainy-glass-opening{
  position:fixed !important;
  inset:0 !important;
  z-index:9999 !important;
  overflow:hidden !important;
  display:block !important;
  pointer-events:none !important;

  /* actual glass: cool grey/blue, not white plastic */
  background:rgba(71,88,103,.20) !important;
  -webkit-backdrop-filter:blur(13px) saturate(.72) contrast(.91) brightness(.88) !important;
  backdrop-filter:blur(13px) saturate(.72) contrast(.91) brightness(.88) !important;

  /* Keep the wet pane opaque enough to read as glass */
  opacity:1 !important;

  /* irregular wiper edge moves left -> right */
  clip-path:polygon(
    0% 0%,100% 0%,100% 100%,0% 100%,
    0% 86%,0% 72%,0% 58%,0% 42%,0% 28%,0% 14%
  );
  animation:rainGlassWipeV25 3.9s cubic-bezier(.72,.01,.24,1) forwards !important;
  will-change:clip-path;
}

.rainy-glass-opening::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(ellipse at 16% 10%,rgba(232,241,246,.18),transparent 25%),
    radial-gradient(ellipse at 82% 18%,rgba(197,216,228,.13),transparent 30%),
    linear-gradient(115deg,rgba(213,224,232,.12),rgba(61,82,99,.05) 44%,rgba(34,53,69,.15));
  mix-blend-mode:screen;
  opacity:.76;
}

.rain-glass-svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  opacity:.82;
  mix-blend-mode:screen;
}

/* A very subtle dark film stops it reading as white translucent plastic */
.rainy-glass-opening::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(21,37,50,.16),rgba(98,116,130,.06) 45%,rgba(30,49,64,.15)),
    linear-gradient(180deg,rgba(16,31,43,.10),transparent 20%,transparent 78%,rgba(18,34,46,.12));
  opacity:.9;
}

.rain-glass-brand{
  position:absolute;
  z-index:3;
  left:50%;
  top:50%;
  width:min(1050px,88vw);
  transform:translate(-50%,-50%);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:25px;
  opacity:0;
  animation:rainGlassBrandV25 3.9s ease forwards;
}

.rain-glass-brand img{
  display:block;
  width:min(650px,65vw);
  height:auto;

  /* neutral dark-grey brown at approximately 50% visual opacity */
  opacity:.50;
  filter:grayscale(.48) sepia(.14) saturate(.55) brightness(.58) contrast(.94);
}

.rain-glass-brand span{
  margin-bottom:15px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(10px,1vw,14px);
  letter-spacing:.50em;
  color:rgba(62,59,57,.50);
  white-space:nowrap;
}

/*
 Wipe timing:
 0–47% glass remains.
 47–100% wiped boundary crosses screen.
 The leading boundary is intentionally uneven rather than ruler-straight.
*/
@keyframes rainGlassWipeV25{
  0%,47%{
    clip-path:polygon(
      0% 0%,100% 0%,100% 100%,0% 100%,
      0% 86%,0% 72%,0% 58%,0% 42%,0% 28%,0% 14%
    );
    visibility:visible;
  }
  58%{
    clip-path:polygon(
      19% 0%,100% 0%,100% 100%,16% 100%,
      18% 86%,15% 72%,20% 58%,16% 42%,19% 28%,15% 14%
    );
  }
  70%{
    clip-path:polygon(
      43% 0%,100% 0%,100% 100%,39% 100%,
      44% 86%,40% 72%,45% 58%,40% 42%,46% 28%,41% 14%
    );
  }
  82%{
    clip-path:polygon(
      69% 0%,100% 0%,100% 100%,65% 100%,
      70% 86%,66% 72%,72% 58%,67% 42%,71% 28%,66% 14%
    );
  }
  94%{
    clip-path:polygon(
      94% 0%,100% 0%,100% 100%,91% 100%,
      95% 86%,92% 72%,97% 58%,92% 42%,96% 28%,91% 14%
    );
  }
  100%{
    clip-path:polygon(
      100% 0%,100% 0%,100% 100%,100% 100%,
      100% 86%,100% 72%,100% 58%,100% 42%,100% 28%,100% 14%
    );
    visibility:hidden;
  }
}

@keyframes rainGlassBrandV25{
  0%{opacity:0;transform:translate(-50%,-50%) translateY(7px)}
  18%{opacity:1;transform:translate(-50%,-50%) translateY(0)}
  46%{opacity:1;transform:translate(-50%,-50%) translateY(0)}
  63%{opacity:.34;transform:translate(-50%,-50%) translateY(-1px)}
  75%,100%{opacity:0;transform:translate(-50%,-50%) translateY(-1px)}
}

/* Header refinement: SHOEMAKING lower + wider tracking */
.site-header .brand{
  align-items:flex-end !important;
  gap:20px !important;
}
.site-header .brand-sub{
  position:relative !important;
  top:auto !important;
  margin-bottom:8px !important;
  font-size:10px !important;
  letter-spacing:.48em !important;
  color:#74695f !important;
}

@media(max-width:700px){
  .rain-glass-brand{
    flex-direction:column;
    align-items:center;
    gap:10px;
  }
  .rain-glass-brand img{width:min(78vw,440px)}
  .rain-glass-brand span{
    margin-bottom:0;
    font-size:9px;
    letter-spacing:.40em;
  }
  .site-header .brand{
    align-items:center !important;
    gap:10px !important;
  }
  .site-header .brand-sub{
    margin-bottom:0 !important;
    letter-spacing:.34em !important;
    font-size:8px !important;
  }
}

@media (prefers-reduced-motion: reduce){
  .rainy-glass-opening{display:none !important}
}


/* =========================================================
   v2.6 HOME — opening removed, header typography refined
   ========================================================= */

/* Opening fully removed from HOME */
.home-opening,
.rainy-glass-opening{
  display:none !important;
}

/* Bring SHOEMAKING closer to the wordmark, but open the tracking more */
.site-header .brand{
  align-items:flex-end !important;
  gap:11px !important;
}

.site-header .brand img{
  width:min(290px,43vw) !important;
}

.site-header .brand-sub{
  position:relative !important;
  top:auto !important;
  margin-bottom:8px !important;
  font-size:10px !important;
  letter-spacing:.58em !important;
  color:#74695f !important;
  white-space:nowrap !important;
}

@media(max-width:700px){
  .site-header .brand{
    gap:7px !important;
    align-items:center !important;
  }
  .site-header .brand img{
    width:min(222px,54vw) !important;
  }
  .site-header .brand-sub{
    margin-bottom:0 !important;
    font-size:8px !important;
    letter-spacing:.42em !important;
  }
}


/* v2.8 wordmark slightly more transparent */
.site-header .brand img{opacity:.84 !important;}


/* =========================================================
   v2.9 hover direction refinement
   Default bronze -> hover dark ink
   ========================================================= */

/* HOME primary menu */
.home-entry-v09 .home-menu-v09 a{
  color:var(--bronze) !important;
}
.home-entry-v09 .home-menu-v09 a:hover{
  color:var(--ink) !important;
}
.home-entry-v09 .home-menu-v09 .menu-ko{
  color:#a38f79 !important;
}
.home-entry-v09 .home-menu-v09 a:hover .menu-ko{
  color:#6d6258 !important;
}

/* ABOUT entry choices */
.about-entry-v18 .about-choice{
  color:var(--bronze) !important;
}
.about-entry-v18 .about-choice:hover{
  color:var(--ink) !important;
}
.about-entry-v18 .about-choice:hover .about-choice-title{
  color:var(--ink) !important;
}

/* Header/menu text links where applicable */
.site-header a:hover,
.detail-topbar a:hover{
  color:var(--ink);
}


/* =========================================================
   v3.0 INTERACTION COLOR SYSTEM — SITE-WIDE
   Selectable UI: bronze by default -> dark ink on hover/focus
   Body copy and non-interactive labels stay neutral.
   ========================================================= */

:root{
  --select-bronze:var(--bronze);
  --select-ink:var(--ink);
}

/* HOME */
.home-entry-v09 .home-menu-v09 a{
  color:var(--select-bronze) !important;
}
.home-entry-v09 .home-menu-v09 a:hover,
.home-entry-v09 .home-menu-v09 a:focus-visible{
  color:var(--select-ink) !important;
}
.home-entry-v09 .home-menu-v09 .menu-ko{
  color:#a38f79 !important;
}
.home-entry-v09 .home-menu-v09 a:hover .menu-ko,
.home-entry-v09 .home-menu-v09 a:focus-visible .menu-ko{
  color:#665b52 !important;
}

/* ABOUT */
.about-entry-v18 .about-choice{
  color:var(--select-bronze) !important;
}
.about-entry-v18 .about-choice strong{
  color:inherit !important;
}
.about-entry-v18 .about-choice:hover,
.about-entry-v18 .about-choice:focus-visible{
  color:var(--select-ink) !important;
}

/* CLASS entry + class navigation */
.class-entry-v07 .class-entry-card,
.class-entry-card{
  color:var(--select-bronze) !important;
}
.class-entry-v07 .class-entry-card:hover,
.class-entry-v07 .class-entry-card:focus-visible,
.class-entry-card:hover,
.class-entry-card:focus-visible{
  color:var(--select-ink) !important;
}
.class-info-link{
  color:var(--select-bronze) !important;
}
.class-info-link:hover,
.class-info-link:focus-visible{
  color:var(--select-ink) !important;
  border-color:rgba(37,29,24,.40) !important;
}
.sticky-course-btn,
.detail-nav-item{
  color:var(--select-bronze) !important;
}
.sticky-course-btn:hover,
.sticky-course-btn:focus-visible,
.detail-nav-item:hover,
.detail-nav-item:focus-visible,
.sticky-course-btn.active,
.detail-nav-item.active{
  color:var(--select-ink) !important;
}
.course-prev,.course-next,
.detail-bottom-nav a,
.student-works-link,
.student-btn{
  color:var(--select-bronze) !important;
}
.course-prev:hover,.course-next:hover,
.course-prev:focus-visible,.course-next:focus-visible,
.detail-bottom-nav a:hover,
.detail-bottom-nav a:focus-visible,
.student-works-link:hover,
.student-works-link:focus-visible,
.student-btn:hover,
.student-btn:focus-visible{
  color:var(--select-ink) !important;
}
.student-works-link:hover,
.student-works-link:focus-visible,
.student-btn:hover,
.student-btn:focus-visible{
  background:transparent !important;
  border-color:var(--select-ink) !important;
}

/* BESPOKE */
.bespoke-process-card,
.bespoke-entry-card{
  color:var(--select-bronze) !important;
}
.bespoke-process-title,
.bespoke-entry-title{
  color:inherit !important;
}
.bespoke-process-card:hover,
.bespoke-process-card:focus-visible,
.bespoke-entry-card:hover,
.bespoke-entry-card:focus-visible{
  color:var(--select-ink) !important;
}
.bespoke-prev,.bespoke-next,
.bespoke-sticky-btn{
  color:var(--select-bronze) !important;
}
.bespoke-prev:hover,.bespoke-next:hover,
.bespoke-prev:focus-visible,.bespoke-next:focus-visible,
.bespoke-sticky-btn:hover,.bespoke-sticky-btn:focus-visible,
.bespoke-sticky-btn.active{
  color:var(--select-ink) !important;
}

/* COLLECTION */
.collection-type-card{
  color:var(--select-bronze) !important;
}
.collection-type-card span{
  color:#a38f79 !important;
}
.collection-type-card:hover,
.collection-type-card:focus-visible{
  color:var(--select-ink) !important;
  border-color:rgba(37,29,24,.34) !important;
}
.collection-type-card:hover span,
.collection-type-card:focus-visible span{
  color:#665b52 !important;
}
.works-back,
.collection-arrow,
.collection-works-v16 .works-arrow,
.collection-thumb,
.collection-work-card,
.collection-works-v16 .work-card{
  color:var(--select-bronze) !important;
}
.works-back:hover,
.works-back:focus-visible,
.collection-arrow:hover,
.collection-arrow:focus-visible,
.collection-works-v16 .works-arrow:hover,
.collection-works-v16 .works-arrow:focus-visible,
.collection-thumb:hover,
.collection-thumb:focus-visible,
.collection-work-card:hover,
.collection-work-card:focus-visible,
.collection-works-v16 .work-card:hover,
.collection-works-v16 .work-card:focus-visible{
  color:var(--select-ink) !important;
}

/* CONTENTS */
.contents-home-row,
.contents-title-row{
  color:var(--select-bronze) !important;
}
.contents-home-row .title,
.contents-title-row .title{
  color:inherit !important;
}
.contents-home-row:hover,
.contents-home-row:focus-visible,
.contents-title-row:hover,
.contents-title-row:focus-visible,
.contents-title-row:hover .title,
.contents-title-row:hover .arrow,
.contents-title-row:focus-visible .title,
.contents-title-row:focus-visible .arrow{
  color:var(--select-ink) !important;
}
.contents-home-search button,
.contents-search-box button,
.contents-list-search button,
.contents-sticky a.catlink,
.contents-back,
.contents-article-bottom a,
.source-copy-btn{
  color:var(--select-bronze) !important;
}
.contents-home-search button:hover,
.contents-home-search button:focus-visible,
.contents-search-box button:hover,
.contents-search-box button:focus-visible,
.contents-list-search button:hover,
.contents-list-search button:focus-visible,
.contents-sticky a.catlink:hover,
.contents-sticky a.catlink:focus-visible,
.contents-sticky a.catlink.active,
.contents-back:hover,
.contents-back:focus-visible,
.contents-article-bottom a:hover,
.contents-article-bottom a:focus-visible,
.source-copy-btn:hover,
.source-copy-btn:focus-visible{
  color:var(--select-ink) !important;
}
.source-copy-btn:hover,
.source-copy-btn:focus-visible{
  border-color:rgba(37,29,24,.40) !important;
}

/* NEWS */
.news-row{
  color:var(--select-bronze) !important;
}
.news-row:hover,
.news-row:focus-visible{
  color:var(--select-ink) !important;
}
.news-row .news-date{
  color:#9d8e80 !important;
}
.news-row .news-kind{
  color:#a17d59 !important;
}
.news-row:hover .news-kind,
.news-row:focus-visible .news-kind{
  color:#665b52 !important;
}
.news-external-link{
  color:var(--select-bronze) !important;
}
.news-external-link:hover,
.news-external-link:focus-visible{
  color:var(--select-ink) !important;
  border-bottom-color:rgba(37,29,24,.45) !important;
}

/* VISIT */
.visit-info-row a,
.visit-action{
  color:var(--select-bronze) !important;
}
.visit-info-row a:hover,
.visit-info-row a:focus-visible,
.visit-action:hover,
.visit-action:focus-visible{
  color:var(--select-ink) !important;
}

/* Shared detail back links */
.detail-back{
  color:var(--select-bronze) !important;
}
.detail-back:hover,
.detail-back:focus-visible{
  color:var(--select-ink) !important;
}

/* Keyboard focus stays elegant but visible */
.home-menu-v09 a:focus-visible,
.about-choice:focus-visible,
.class-entry-card:focus-visible,
.bespoke-process-card:focus-visible,
.collection-type-card:focus-visible,
.contents-home-row:focus-visible,
.news-row:focus-visible{
  outline:1px solid rgba(145,102,59,.34);
  outline-offset:4px;
}


/* =========================================================
   v3.1 BESPOKE ENTRY — 3 process + separate gallery, all one row
   ========================================================= */

.bespoke-entry-v20 .entry-stage.bespoke-entry-stage-v31{
  flex:1 1 auto;
  min-height:0;
  max-width:1260px;
  width:100%;
  margin:0 auto;
  padding:14px clamp(26px,4vw,56px) 18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.bespoke-entry-line{
  margin:0 auto 16px;
  max-width:820px;
  text-align:center;
  color:#8a7b6d;
  font-size:11px;
  line-height:1.65;
}
.bespoke-entry-line:empty{
  display:none;
  margin:0;
}

.bespoke-row-v31{
  display:grid;
  grid-template-columns:
    minmax(128px,1fr) 22px
    minmax(128px,1fr) 22px
    minmax(128px,1fr)
    clamp(24px,3vw,48px)
    minmax(180px,1.28fr);
  align-items:center;
  gap:8px;
  width:100%;
  max-width:1080px;
  margin:0 auto;
}

.bespoke-process-card-v31,
.bespoke-gallery-card-v31{
  color:var(--select-bronze);
  transition:.2s ease;
  min-width:0;
}
.bespoke-process-card-v31:hover,
.bespoke-process-card-v31:focus-visible,
.bespoke-gallery-card-v31:hover,
.bespoke-gallery-card-v31:focus-visible{
  color:var(--select-ink);
}

.bespoke-process-photo-v31{
  display:block;
  width:100%;
  aspect-ratio:1.42/1;
  overflow:hidden;
  border:1px solid rgba(145,102,59,.16);
  border-radius:13px;
  background:#d2c7ba;
}
.bespoke-process-photo-v31 img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.84) brightness(.94);
  transition:.28s ease;
}
.bespoke-process-card-v31:hover img{
  transform:scale(1.012);
}

.bespoke-process-title-v31{
  display:block;
  margin-top:8px;
  text-align:center;
  font-size:10px;
  letter-spacing:.035em;
  white-space:nowrap;
}

.bespoke-arrow-v31{
  text-align:center;
  color:#b49d87;
  font-family:Georgia,"Times New Roman",serif;
  font-size:18px;
  transform:translateY(-9px);
}

.bespoke-gap-v31{
  display:block;
}

.bespoke-gallery-card-v31{
  align-self:center;
}

.bespoke-gallery-photo-v31{
  display:block;
  width:100%;
  aspect-ratio:1.52/1;
  overflow:hidden;
  border:1px solid rgba(145,102,59,.20);
  background:#2f261f;
  clip-path:polygon(
    14px 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    14px 100%,
    0 calc(100% - 14px),
    0 14px
  );
}
.bespoke-gallery-photo-v31 img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:50% 57%;
  filter:saturate(.82) brightness(.72);
  transition:.28s ease;
}
.bespoke-gallery-card-v31:hover img{
  transform:scale(1.012);
}
.bespoke-gallery-title-v31{
  display:block;
  margin-top:9px;
  text-align:center;
  font-family:Georgia,"Times New Roman",serif;
  font-size:11px;
  letter-spacing:.14em;
  white-space:nowrap;
}

/* Desktop entry stays airy: hero is modest, content row gets breathing room */
.bespoke-entry-v20 .entry-hero{
  flex:0 0 28vh;
  min-height:190px;
  max-height:300px;
}

@media(max-width:900px){
  .bespoke-row-v31{
    grid-template-columns:
      minmax(105px,1fr) 16px
      minmax(105px,1fr) 16px
      minmax(105px,1fr)
      18px
      minmax(150px,1.2fr);
    gap:5px;
  }
  .bespoke-process-title-v31{font-size:9px}
  .bespoke-gallery-title-v31{font-size:10px}
}

@media(max-width:700px){
  .bespoke-entry-v20{
    overflow:auto;
  }
  .bespoke-entry-v20 .entry-stage.bespoke-entry-stage-v31{
    padding:14px 14px 24px;
  }
  .bespoke-row-v31{
    grid-template-columns:1fr 16px 1fr;
    grid-auto-rows:auto;
    gap:10px 5px;
  }

  .bespoke-process-card-v31:nth-of-type(1){grid-column:1}
  .bespoke-arrow-v31:nth-of-type(1){grid-column:2}
  .bespoke-process-card-v31:nth-of-type(2){grid-column:3}
  .bespoke-arrow-v31:nth-of-type(2){display:none}
  .bespoke-process-card-v31:nth-of-type(3){grid-column:1 / span 1}
  .bespoke-gap-v31{display:none}
  .bespoke-gallery-card-v31{grid-column:2 / span 2}

  .bespoke-process-photo-v31,
  .bespoke-gallery-photo-v31{
    aspect-ratio:1.45/1;
  }
}


/* v5.1 class header wordmark restore */
.class-entry-v07 .site-header{
  overflow:hidden;
}
.class-entry-v07 .site-header .brand{
  align-items:center;
  gap:14px;
}
.class-entry-v07 .site-header .brand img{
  width:min(248px,36vw);
  max-height:44px;
  object-fit:contain;
}
.class-entry-v07 .site-header .brand-sub{
  margin-bottom:0;
  top:auto;
  font-size:10px;
  letter-spacing:.34em;
  color:#6f6256;
}
@media (max-width: 900px){
  .class-entry-v07 .site-header .brand img{
    width:min(220px,48vw);
    max-height:40px;
  }
  .class-entry-v07 .site-header .brand-sub{
    font-size:9px;
    letter-spacing:.30em;
  }
}
@media (max-width: 700px){
  .class-entry-v07 .site-header .brand{
    gap:10px;
  }
  .class-entry-v07 .site-header .brand img{
    width:min(204px,56vw);
    max-height:36px;
  }
  .class-entry-v07 .site-header .brand-sub{
    display:none;
  }
}


/* v6.1 explicit home link */
.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}
.header-home-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 3px;
  color:#796b5f;
  font-family:Georgia,"Times New Roman",serif;
  font-size:10px;
  letter-spacing:.22em;
  transition:color .18s ease;
}
.header-home-link:hover,
.header-home-link:focus-visible{
  color:var(--bronze);
}
@media(max-width:700px){
  .header-actions{gap:8px;}
  .header-home-link{font-size:9px;letter-spacing:.16em;}
}

/* v6.5 SCHEDULE month navigation */
.schedule-month-nav{
  display:flex;
  align-items:center;
  gap:12px;
}
.schedule-nav-btn{
  width:30px;
  height:30px;
  border:1px solid rgba(145,102,59,.22);
  border-radius:999px;
  background:transparent;
  color:#8d6e51;
  font-family:Georgia,"Times New Roman",serif;
  font-size:14px;
  line-height:1;
  cursor:pointer;
  transition:.18s ease;
}
.schedule-nav-btn:hover,
.schedule-nav-btn:focus-visible{
  color:var(--ink);
  border-color:rgba(37,29,24,.32);
}
.schedule-day.today::after{
  content:"";
  position:absolute;
  top:5px;
  right:5px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#91663b;
  opacity:.72;
}
@media(max-width:720px){
  .schedule-head{align-items:flex-start}
  .schedule-month-nav{gap:8px}
  .schedule-nav-btn{width:27px;height:27px;font-size:13px}
}


/* ===== v6.6 practical share / save control ===== */
.share-tools-toggle{
  width:42px;height:42px;border:0;background:transparent;color:var(--ink);
  display:grid;place-items:center;cursor:pointer;padding:0;
}
.share-tools-toggle svg{width:21px;height:21px;display:block;stroke:currentColor;fill:none;stroke-width:1.45;stroke-linecap:round;stroke-linejoin:round}
.share-tools-toggle:hover,.share-tools-toggle:focus-visible{color:var(--bronze)}
.share-tools-panel{
  position:fixed;z-index:120;top:68px;right:clamp(18px,4vw,64px);width:min(300px,calc(100vw - 32px));
  padding:10px;background:rgba(250,247,240,.985);border:1px solid rgba(37,29,24,.12);
  box-shadow:0 18px 46px rgba(37,29,24,.16);border-radius:16px;
  opacity:0;visibility:hidden;transform:translateY(-7px);transition:.18s ease;
}
.share-tools-panel.is-open{opacity:1;visibility:visible;transform:translateY(0)}
.share-action{
  width:100%;border:0;background:transparent;text-align:left;padding:11px 12px;border-radius:10px;cursor:pointer;color:var(--ink);
  display:flex;align-items:center;justify-content:space-between;gap:14px;
}
.share-action:hover,.share-action:focus-visible{background:rgba(145,102,59,.07)}
.share-action span{font-size:12px;letter-spacing:.03em}
.share-action small{font-size:9px;color:#9a8c7d;font-weight:400}
.share-qr-wrap{margin:7px 6px 2px;padding-top:12px;border-top:1px solid rgba(37,29,24,.09);display:flex;align-items:center;gap:12px;color:#7d6b5a;font-size:10px;letter-spacing:.04em}
.share-qr-wrap img{width:68px;height:68px;display:block;background:#fff;padding:4px;border:1px solid rgba(37,29,24,.08)}
.site-toast{position:fixed;z-index:140;left:50%;bottom:28px;transform:translate(-50%,10px);background:rgba(37,29,24,.94);color:#fffaf2;padding:10px 14px;border-radius:999px;font-size:11px;opacity:0;visibility:hidden;transition:.2s ease;white-space:nowrap;max-width:calc(100vw - 32px);overflow:hidden;text-overflow:ellipsis}
.site-toast.show{opacity:1;visibility:visible;transform:translate(-50%,0)}
@media(max-width:700px){.share-tools-panel{top:62px;right:12px}.share-action{padding:12px 10px}.share-action small{font-size:8px}.share-qr-wrap img{width:62px;height:62px}}

/* share panel: show current page URL */
.share-current-url{
  margin:2px 12px 8px;
  padding:9px 10px 10px;
  border-top:1px solid rgba(80,60,45,.10);
  border-bottom:1px solid rgba(80,60,45,.10);
}
.share-current-url span{
  display:block;
  margin-bottom:4px;
  font-size:9px;
  letter-spacing:.08em;
  color:#a29384;
}
.share-current-url strong{
  display:block;
  max-width:240px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:10px;
  font-weight:400;
  color:#65584d;
  user-select:all;
}
