:root{
  --cream:#F6F0E6;
  --cream-2:#EFE6D6;
  --ink:#241E19;
  --brick:#BD5A3A;
  --brick-dark:#8C3F26;
  --oak:#C89B66;
  --putty:#DAD2C3;
  --line: rgba(36,30,25,0.12);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:'Zen Maru Gothic', sans-serif;
  line-height:1.9;
  overflow-x:hidden;
}
h1,h2,h3,.display{
  font-family:'Fredoka', 'Zen Maru Gothic', sans-serif;
  letter-spacing:0.01em;
}
a{color:inherit;}
img{display:block; max-width:100%;}

/* ---------- NAV ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:50;
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 6vw;
  transition:background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.nav.scrolled{
  background:rgba(246,240,230,0.92);
  backdrop-filter:blur(6px);
  box-shadow:0 2px 16px rgba(36,30,25,0.08);
  padding:10px 6vw;
}
.nav .wordmark{font-size:20px; font-weight:700; color:var(--ink);}
.nav .wordmark span{color:var(--brick);}
.nav-links{display:flex; gap:28px; font-size:14px; font-weight:500;}
.nav-links a{text-decoration:none; opacity:0.75; transition:opacity .2s;}
.nav-links a:hover{opacity:1;}

/* ---------- HERO ---------- */
.hero{
  position:relative; height:100svh; min-height:560px;
  display:flex; align-items:flex-end;
  overflow:hidden;
}
.hero-img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center 30%;
  transform:scale(1.06);
}
.hero::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(36,20,14,0.05) 0%, rgba(28,16,11,0.55) 68%, rgba(20,11,8,0.82) 100%);
}
.hero-inner{position:relative; z-index:2; width:100%; padding:0 6vw 64px; color:#fff;}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(246,240,230,0.95); color:var(--brick-dark);
  padding:7px 16px; border-radius:100px;
  font-size:13px; font-weight:600; letter-spacing:.03em;
  margin-bottom:22px;
}
.hero-badge::before{content:""; width:7px; height:7px; border-radius:50%; background:var(--brick); display:inline-block;}
.hero h1{
  font-size:clamp(40px, 8vw, 96px);
  font-weight:700; line-height:0.95;
  text-shadow:0 4px 24px rgba(0,0,0,0.25);
}
.hero-jp{
  font-family:'Zen Maru Gothic', sans-serif;
  font-size:clamp(15px, 2vw, 19px);
  font-weight:500; margin-top:18px; opacity:0.92;
  max-width:520px;
}
.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  z-index:2; color:#fff; opacity:0.85;
  display:flex; flex-direction:column; align-items:center; gap:6px;
  font-size:11px; letter-spacing:.15em;
}
.scroll-cue .line{width:1px; height:34px; background:#fff; animation:scrollLine 1.8s ease-in-out infinite;}
@keyframes scrollLine{
  0%{transform:scaleY(0); transform-origin:top;}
  50%{transform:scaleY(1); transform-origin:top;}
  51%{transform-origin:bottom;}
  100%{transform:scaleY(0); transform-origin:bottom;}
}

/* ---------- reveal ---------- */
.reveal{opacity:0; transform:translateY(36px); transition:opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---------- SECTION generic ---------- */
section{position:relative; padding:120px 6vw;}
.eyebrow{
  font-size:13px; font-weight:700; letter-spacing:.14em;
  color:var(--brick-dark); text-transform:uppercase;
  display:flex; align-items:center; gap:10px; margin-bottom:18px;
}
.eyebrow::before{content:""; width:26px; height:2px; background:var(--brick);}
.section-title{font-size:clamp(28px, 4vw, 44px); font-weight:600; margin-bottom:26px;}

/* ---------- CONCEPT ---------- */
.concept{display:grid; grid-template-columns:1.1fr 0.9fr; gap:64px; align-items:center;}
.concept p{font-size:16px; max-width:46ch; color:rgba(36,30,25,0.85);}
.concept p + p{margin-top:16px;}
.arch-frame{
  position:relative; overflow:hidden;
  border-radius:280px 280px 16px 16px;
  aspect-ratio:3/4;
  box-shadow:0 30px 60px -20px rgba(36,20,14,0.35);
}
.arch-frame img{width:100%; height:100%; object-fit:cover;}
.arch-deco{position:absolute; inset:14px; border:2px solid rgba(255,255,255,0.5); border-radius:266px 266px 6px 6px; pointer-events:none;}

.arch-row{display:flex; justify-content:center; gap:14px; margin:64px 0;}
.arch-row span{width:34px; height:52px; border-radius:20px 20px 0 0; border:2px solid var(--oak); border-bottom:none; opacity:.55;}
.arch-row span:nth-child(2){opacity:.75; border-color:var(--brick);}
.arch-row span:nth-child(4){opacity:.75; border-color:var(--brick);}

/* ---------- CALENDAR ---------- */
.calendar-wrap{background:var(--cream-2);}
.cal-head{display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:16px; margin-bottom:36px;}
.cal-note{font-size:13px; color:rgba(36,30,25,0.6); max-width:40ch;}
.calendar{background:#fff; border-radius:28px; padding:28px 22px; box-shadow:0 20px 50px -25px rgba(36,20,14,0.25);}
.cal-tabs{display:flex; gap:8px; margin-bottom:22px;}
.cal-tab{
  flex:1; text-align:center; padding:10px 6px; border-radius:100px;
  font-size:13px; font-weight:700; font-family:'Zen Maru Gothic';
  background:var(--cream); color:rgba(36,30,25,0.55); border:1px solid var(--line);
  cursor:pointer; transition:background .2s, color .2s;
}
.cal-tab.active{background:var(--ink); color:var(--cream); border-color:var(--ink);}
.cal-range{text-align:center; font-size:12.5px; color:rgba(36,30,25,0.5); margin-bottom:18px; font-weight:500;}

.cal-grid{display:flex; flex-direction:column; gap:10px;}
.day-card{display:flex; gap:16px; padding:14px 16px; border-radius:16px; background:var(--cream); border:1px solid var(--line);}
.day-card.today{outline:2px solid var(--brick); outline-offset:-2px; background:#fff;}
.day-card.special{background:rgba(189,90,58,0.07); border-color:rgba(189,90,58,0.35);}
.day-head{flex:none; width:52px; text-align:center; padding-top:2px;}
.day-head .d{display:block; font-family:'Fredoka'; font-size:22px; font-weight:700; line-height:1.1;}
.day-head .dow{display:block; font-size:11px; font-weight:700; color:rgba(36,30,25,0.5); margin-top:2px;}
.day-card.special .day-head .d{color:var(--brick-dark);}
.day-shops{flex:1; display:flex; flex-direction:column; gap:7px; border-left:1px solid var(--line); padding-left:16px;}
.shop-row{display:flex; justify-content:space-between; align-items:center; font-size:13px; gap:10px;}
.shop-row-name{font-weight:600; color:rgba(36,30,25,0.85); white-space:nowrap;}
.shop-row-pill{font-size:11px; font-weight:700; padding:3px 10px; border-radius:100px; white-space:nowrap;}
.shop-row.open .shop-row-pill{background:rgba(189,90,58,0.12); color:var(--brick-dark);}
.shop-row.closed .shop-row-pill{background:rgba(36,30,25,0.08); color:rgba(36,30,25,0.45);}
.shop-row.special .shop-row-pill{background:var(--brick); color:#fff;}
.cal-legend{display:flex; gap:18px; margin-top:20px; flex-wrap:wrap; font-size:11.5px; color:rgba(36,30,25,0.6);}
.cal-legend span{display:inline-flex; align-items:center; gap:6px;}
.dot{width:8px; height:8px; border-radius:50%; display:inline-block;}
@media (max-width:480px){
  .day-head{width:42px;}
  .shop-row{font-size:12px;}
  .shop-row-pill{font-size:10px; padding:3px 8px;}
  .calendar{padding:22px 14px;}
}

/* ---------- SHOPS ---------- */
.shop{display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center;}
.shop:nth-child(even) .shop-img{order:2;}
.shop-frame{position:relative; border-radius:24px; overflow:hidden; aspect-ratio:4/5; box-shadow:0 24px 50px -22px rgba(36,20,14,0.32);}
.shop-frame img{width:100%; height:100%; object-fit:cover; transition:transform .6s ease;}
.shop-frame:hover img{transform:scale(1.045);}
.shop-tag{font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--brick-dark); margin-bottom:10px;}
.shop-name{font-size:clamp(24px,3vw,34px); font-weight:600; margin-bottom:18px;}
.shop-msg{font-size:15.5px; color:rgba(36,30,25,0.82); max-width:44ch; margin-bottom:22px;}
.ig-chip{
  display:inline-flex; align-items:center; gap:8px;
  border:1.5px solid var(--ink); border-radius:100px; padding:9px 18px;
  font-size:13px; font-weight:600; text-decoration:none;
  transition:background .2s, color .2s;
}
.ig-chip:hover{background:var(--ink); color:var(--cream);}
.shops-list{display:flex; flex-direction:column; gap:130px; margin-top:80px;}

/* ---------- ACCESS ---------- */
.access{background:var(--ink); color:var(--cream);}
.access .eyebrow{color:var(--oak);}
.access .eyebrow::before{background:var(--oak);}
.access-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px; align-items:start;}
.access-info dl{display:grid; grid-template-columns:auto 1fr; gap:12px 20px; margin-top:28px; font-size:14.5px;}
.access-info dt{color:var(--oak); font-weight:700; white-space:nowrap;}
.access-info dd{opacity:.92;}
.map-frame{border-radius:20px; overflow:hidden; box-shadow:0 24px 50px -22px rgba(0,0,0,0.5);}
.map-frame iframe{width:100%; height:380px; border:0; display:block;}

/* ---------- FOOTER ---------- */
footer{background:var(--ink); color:var(--cream); padding:64px 6vw 32px; border-top:1px solid rgba(246,240,230,0.12);}
.foot-top{display:flex; justify-content:space-between; flex-wrap:wrap; gap:32px; padding-bottom:36px;}
.foot-word{font-size:24px; font-weight:700;}
.foot-word span{color:var(--brick);}
.foot-sns{display:flex; gap:14px; margin-top:18px;}
.foot-sns a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(246,240,230,0.3);
  display:flex; align-items:center; justify-content:center; text-decoration:none;
  transition:background .2s;
}
.foot-sns a:hover{background:rgba(246,240,230,0.12);}
.foot-bottom{padding-top:24px; border-top:1px solid rgba(246,240,230,0.12); font-size:12px; opacity:.55; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;}

@media (max-width:860px){
  .concept, .shop, .access-grid{grid-template-columns:1fr; gap:36px;}
  .shop:nth-child(even) .shop-img{order:0;}
  section{padding:90px 6vw;}
  .arch-frame{border-radius:160px 160px 12px 12px;}
}
